Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
14 changes: 7 additions & 7 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 - 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 @@ -245,9 +245,9 @@ jobs:
ref: ${{ inputs.branch || github.ref }}

- 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 - 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 @@ -458,9 +458,9 @@ jobs:
path: ${{ github.workspace }}/standalone_plugin_wheel/wheel

- 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 - 3.14. Make sure to consistently use the system versions.
run: |
echo /Library/Frameworks/Python.framework/Versions/${{ matrix.python_version }}/bin >> $GITHUB_PATH

Expand All @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/constants.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
- 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