Skip to content

Commit

Permalink
Remove upper caps on dependency versions. (#358)
Browse files Browse the repository at this point in the history
  • Loading branch information
cqc-alec authored Jun 24, 2024
1 parent 677ec47 commit 40cb48a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
~~~~~~~~~

Unreleased
----------

* Relax version requirements on dependencies by removing upper bounds.

0.54.0 (June 2024)
------------------

Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@
packages=find_namespace_packages(include=["pytket.*"]),
include_package_data=True,
install_requires=[
"pytket ~= 1.29",
"qiskit ~= 1.1",
"qiskit-algorithms ~= 0.3.0",
"qiskit-ibm-runtime ~= 0.24.1",
"qiskit-aer ~= 0.14.2",
"numpy < 2",
"pytket >= 1.29",
"qiskit >= 1.1",
"qiskit-algorithms >= 0.3.0",
"qiskit-ibm-runtime >= 0.24.1",
"qiskit-aer >= 0.14.2",
"numpy >= 1.26.4",
],
classifiers=[
"Environment :: Console",
Expand Down

0 comments on commit 40cb48a

Please sign in to comment.