From 08380ef3633e6eb6684570030faeeb3b7a00a997 Mon Sep 17 00:00:00 2001 From: Jim Garrison Date: Fri, 20 Oct 2023 09:01:16 -0400 Subject: [PATCH] Bump version in toplevel setup.py Pull request #11059 bumped the version on `main` to `1.0.0`, but it missed the version in the toplevel `setup.py`. This PR fixes that oversight. In the current state, the `qiskit` and `qiskit-terra` python packages cannot be simultaneously installed from `main`. This led to a CI failure for us in the circuit knitting toolbox, which can be seen here: https://github.com/Qiskit-Extensions/circuit-knitting-toolbox/actions/runs/6582190865/job/17883338486 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3162a11198b3..97ca604fd757 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ setup( name="qiskit-terra", - version="0.45.0rc1", + version="1.0.0", description="Software for developing quantum computing programs", long_description=README, long_description_content_type="text/markdown",