Skip to content

Commit

Permalink
chore: Remove Python 3.11 upper bound and bump orquestra-* packages (#…
Browse files Browse the repository at this point in the history
…137)

* chore: Remove Python 3.11 upper bound and bump orquestra-* packages

* chore: Use 3.11 in PR checks
  • Loading branch information
jamesclark-Zapata authored Oct 20, 2023
1 parent bc9db64 commit d02a37c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
os: ["ubuntu-latest"]
python: ["3.8", "3.9"]
python: ["3.9", "3.10", "3.11"]

name: Coverage - Python ${{ matrix.python }} - ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/performance_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: '3.10'
python-version: '3.11'
architecture: x64

- uses: julia-actions/setup-julia@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# Run jobs for a couple of Python versions.
strategy:
matrix:
python: ["3.8", "3.9"]
python: ["3.9", "3.10", "3.11"]

name: Style - Python ${{ matrix.python }}

Expand Down
10 changes: 5 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ include_package_data = True
package_dir =
= src
packages = find_namespace:
python_requires = >=3.8,!=3.9.7,<3.11
python_requires = >=3.9,!=3.9.7

install_requires =
orquestra-quantum==0.11.0
orquestra-vqa==0.8.0
orquestra-qiskit==0.12.0
orquestra-cirq==0.10.0
orquestra-quantum==0.12.0
orquestra-vqa==0.9.0
orquestra-qiskit==0.13.0
orquestra-cirq==0.11.0
networkx>=2.8.7
# Used to define and run Orquestra workflows
orquestra-sdk[all]>=0.46.0
Expand Down

0 comments on commit d02a37c

Please sign in to comment.