Skip to content

Commit

Permalink
CI - add Python 3.12 tests to ci-daily (#6605)
Browse files Browse the repository at this point in the history
Run ci-daily tests with Python 3.12 in addition to 3.10 and 3.11.
Also clean up dependency constraints that got unnecessary after #6281.

Follow-up to #6460
  • Loading branch information
pavoljuhas committed Jun 14, 2024
1 parent 71c79da commit 0aae3c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Pytest Ubuntu
strategy:
matrix:
python-version: ['3.10', '3.11']
python-version: ['3.10', '3.11', '3.12']
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
name: Pytest Windows
strategy:
matrix:
python-version: ['3.10', '3.11']
python-version: ['3.10', '3.11', '3.12']
runs-on: windows-2019
steps:
- uses: actions/checkout@v4
Expand All @@ -70,7 +70,7 @@ jobs:
name: Pytest MacOS
strategy:
matrix:
python-version: ['3.10', '3.11']
python-version: ['3.10', '3.11', '3.12']
# TODO(#6577): upgrade to macos-latest when it runs Python 3.10
runs-on: macos-13
steps:
Expand Down
5 changes: 0 additions & 5 deletions dev_tools/requirements/deps/notebook.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,3 @@ papermill~=2.6

# assumed to be part of colab
seaborn~=0.12

# TODO(#6281) - remove below after the merge of #6281
jupyterlab~=4.0.13
jupyterlab-server~=2.24.0
nbformat~=5.10.4

0 comments on commit 0aae3c1

Please sign in to comment.