Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-wheel-linux-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ jobs:
python${{ matrix.python_version }} -m pip install 'amazon-braket-pennylane-plugin>=1.31.0'

- name: Install OQC client
if: matrix.python_version != '3.13'
if: ${{ !contains(fromJSON('["3.13", "3.14"]'), matrix.python_version) }}
run: |
python${{ matrix.python_version }} -m pip install oqc-qcaas-client

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-wheel-linux-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ jobs:
python${{ matrix.python_version }} -m pip install 'amazon-braket-pennylane-plugin>=1.31.0'

- name: Install OQC client
if: matrix.python_version != '3.13'
if: ${{ !contains(fromJSON('["3.13", "3.14"]'), matrix.python_version) }}
run: |
python${{ matrix.python_version }} -m pip install oqc-qcaas-client

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-wheel-macos-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,9 @@ jobs:
lookup-only: True

- name: Setup Python version
# There are multiple Python versions installed on the GitHub image, 3.11 - 3.12 is already
# There are multiple Python versions installed on the GitHub image, 3.11 - 3.14 is already
# available under /Library/Frameworks/Python.framework/Versions/, but homebrew also provides
# 3.11 and 3.12. Make sure to consistently use the system versions.
# 3.11 and 3.14. Make sure to consistently use the system versions.
run: |
echo /Library/Frameworks/Python.framework/Versions/${{ matrix.python_version }}/bin >> $GITHUB_PATH

Expand Down Expand Up @@ -474,7 +474,7 @@ jobs:
python${{ matrix.python_version }} -m pip install 'amazon-braket-pennylane-plugin>1.27.1'

- name: Install OQC client
if: matrix.python_version != '3.13'
if: ${{ !contains(fromJSON('["3.13", "3.14"]'), matrix.python_version) }}
run: |
python${{ matrix.python_version }} -m pip install oqc-qcaas-client

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/constants.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ jobs:
- name: Python versions
id: python_versions
run: |
echo 'python_versions=["3.11", "3.12"]' >> $GITHUB_OUTPUT
echo 'python_versions=["3.11", "3.12", "3.13", "3.14"]' >> $GITHUB_OUTPUT
- name: Python test versions
id: python_test_versions
run: |
echo 'python_test_versions=["3.11", "3.12", "3.13"]' >> $GITHUB_OUTPUT
echo 'python_test_versions=["3.11", "3.12", "3.13", "3.14"]' >> $GITHUB_OUTPUT
- name: Primary Python version
id: primary_python_version
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ def parse_dep_versions():
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
]

Expand Down
Loading