Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix recent CI errors in Neko and python 3.11 #1699

Closed
wants to merge 8 commits into from
4 changes: 3 additions & 1 deletion .github/workflows/neko.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@ jobs:
- uses: Qiskit/qiskit-neko@main
with:
test_selection: backend
repo_install_command: pip install -e .
repo_install_command: |
pip install conan
pip install -v .
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
needs: ["lint"]
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", '3.11']
python-version: [3.7, 3.8, 3.9, "3.10", '3.11.0']
platform: [
{ os: "ubuntu-latest", python-architecture: "x64" },
]
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
timeout-minutes: 60
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11.0"]
os: ["ubuntu-latest"]
env:
AER_THRUST_BACKEND: OMP
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
timeout-minutes: 60
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", '3.11']
python-version: [3.7, 3.8, 3.9, "3.10", '3.11.0']
os: ["macOS-latest"]
env:
AER_THRUST_BACKEND: OMP
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:
timeout-minutes: 60
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11.0"]
os: ["windows-2019"]
env:
AER_THRUST_BACKEND: OMP
Expand Down