Skip to content

Commit

Permalink
Bump package version for post release (#10955)
Browse files Browse the repository at this point in the history
* Bump package version for post release

The 0.25.2 release had a number of packaging issues relating to CI and
versioning. This commit bumps the terra package version to 0.25.2.post0
which is a post-release notation that is pep440 compliant. The actual
version.txt file is not updated in this PR because we still want it to
show as 0.25.2 for `qiskit.__version__`, this is just a re-packaging of
the 0.25.2 release.

* Update package pin in qiskit_pkg to the post release

* Use qiskit-terra 0.25.2.1 instead of 0.25.2.post0

The use of a post-release is potentially problematic for downstream
consumers/re-packagers. To make it easier for those use cases this
commit switches from an explicit post release to using 0.25.2.1 which
other tools will treat as newer than 0.25.2.
  • Loading branch information
mtreinish authored Oct 3, 2023
1 parent 98ff236 commit 10e00c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qiskit_pkg/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
with open(README_PATH) as readme_file:
README = readme_file.read()

requirements = ["qiskit-terra==0.25.2"]
requirements = ["qiskit-terra==0.25.2.1"]

setup(
name="qiskit",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@

setup(
name="qiskit-terra",
version="0.25.2",
version="0.25.2.1",
description="Software for developing quantum computing programs",
long_description=README,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 10e00c9

Please sign in to comment.