Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/ci-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Pytest Ubuntu
strategy:
matrix:
python-version: ['3.11', '3.12']
python-version: ['3.11', '3.12', '3.13']
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
Expand All @@ -44,7 +44,7 @@ jobs:
name: Pytest Windows
strategy:
matrix:
python-version: ['3.11', '3.12']
python-version: ['3.11', '3.12', '3.13']
runs-on: windows-2022
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
Expand All @@ -70,7 +70,7 @@ jobs:
name: Pytest MacOS
strategy:
matrix:
python-version: ['3.11', '3.12']
python-version: ['3.11', '3.12', '3.13']
runs-on: macos-13
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
Expand Down
32 changes: 3 additions & 29 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ jobs:
name: Pytest Ubuntu
strategy:
matrix:
python-version: ['3.11', '3.12']
python-version: ['3.11', '3.12', '3.13']
runs-on: ubuntu-22.04
steps:
- name: Check out source repository
Expand All @@ -205,32 +205,6 @@ jobs:
run: |
pip install --upgrade setuptools wheel
pip install --upgrade --upgrade-strategy eager -r dev_tools/requirements/dev.env.txt
- name: Pytest check
run: check/pytest -n auto --durations=20 --ignore=cirq-core/cirq/contrib
# TODO(#6706) remove after we start using NumPy 2.0 in regular pytest
pytest-numpy-2:
if: github.repository_owner == 'quantumlib'
name: Pytest Ubuntu with NumPy-2
strategy:
matrix:
python-version: ['3.11', '3.12', '3.13']
runs-on: ubuntu-22.04
steps:
- name: Check out source repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up Python environment
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: ${{ matrix.python-version }}
architecture: 'x64'
cache: 'pip'
cache-dependency-path: |
**/requirements.txt
dev_tools/requirements/**/*.txt
- name: Install requirements
run: |
pip install wheel
pip install --upgrade --upgrade-strategy eager -r dev_tools/requirements/dev-np2.env.txt
- name: Pytest check
run: check/pytest -n auto --durations=20
pip-compile:
Expand Down Expand Up @@ -302,7 +276,7 @@ jobs:
name: Pytest Windows
strategy:
matrix:
python-version: ['3.11', '3.12']
python-version: ['3.11', '3.12', '3.13']
runs-on: windows-2022
steps:
- name: Check out source repository
Expand Down Expand Up @@ -330,7 +304,7 @@ jobs:
name: Pytest MacOS
strategy:
matrix:
python-version: ['3.11', '3.12']
python-version: ['3.11', '3.12', '3.13']
runs-on: macos-13
steps:
- name: Check out source repository
Expand Down
26 changes: 0 additions & 26 deletions dev_tools/requirements/dev-np2.env.txt

This file was deleted.

1 change: 0 additions & 1 deletion dev_tools/requirements/dev.env.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@

-r deps/cirq-all.txt
-r deps/dev-tools.txt