Skip to content

Commit 057a6c8

Browse files
authored
add section on public (#2121)
1 parent 5dd0d16 commit 057a6c8

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

DEPRECATION.md

+16
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,22 @@ The guiding principles are:
3030
- all deprecations, changes and removals are considered API changes, and can
3131
only occur in minor releases not patch releases, per the [stable branch policy](https://github.com/Qiskit/qiskit/blob/main/MAINTAINING.md#stable-branch-policy).
3232

33+
## What is the public interface?
34+
35+
The public API comprises all *publicly documented* packages, modules, classes, functions, methods, and attributes.
36+
37+
An object is *publicly documented* if and only if it appears in [the hosted API documentation](https://docs.quantum.ibm.com/api/qiskit-ibm-runtime) for `qiskit-ibm-runtime`.
38+
The presence of a docstring in the Python source (or a `__doc__` attribute) is not sufficient to make an object publicly documented; this documentation must also be rendered in the public API documentation.
39+
40+
As well as the objects themselves needing to be publicly documented, the only public-API *import locations* for a given object is the location it is documented at in [the public API documentation](https://docs.quantum.ibm.com/api/qiskit-ibm-runtime), and parent modules or packages that re-export the object (if any).
41+
For example, while it is possible to import `RuntimeEncoder` from `qiskit_ibm_runtime.utils.json`, this is not a supported part of the public API because the[`RuntimeEncoder` object is documented as being in `qiskit_ibm_runtime`](https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.RuntimeEncoder).
42+
43+
As a rule of thumb, if you are using `qiskit-ibm-runtime`, you should import objects from the highest-level package that exports that object.
44+
45+
Some components of the documented public interface may be marked as "experimental", and not subject to the stability guarantees of semantic versioning.
46+
These will be clearly denoted in the documentation.
47+
We will only use these "experimental" features sparingly, when we feel there is a real benefit to making the experimental version public in an unstable form, such as a backwards-incompatible new version of core functionality that shows significant improvements over the existing form for limited inputs, but is not yet fully feature complete.
48+
Typically, a feature will only become part of the public API when we are ready to commit to its stability properly.
3349

3450
## Removing a feature
3551

0 commit comments

Comments
 (0)