From 0aae3c122ad457cec884e8bfbe001afde9d17f5b Mon Sep 17 00:00:00 2001 From: Pavol Juhas Date: Fri, 14 Jun 2024 13:31:52 -0700 Subject: [PATCH] CI - add Python 3.12 tests to ci-daily (#6605) 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 --- .github/workflows/ci-daily.yml | 6 +++--- dev_tools/requirements/deps/notebook.txt | 5 ----- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-daily.yml b/.github/workflows/ci-daily.yml index 4748c3d90c2..c607d820b07 100644 --- a/.github/workflows/ci-daily.yml +++ b/.github/workflows/ci-daily.yml @@ -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 @@ -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 @@ -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: diff --git a/dev_tools/requirements/deps/notebook.txt b/dev_tools/requirements/deps/notebook.txt index dfd0edb613f..8fea53bb411 100644 --- a/dev_tools/requirements/deps/notebook.txt +++ b/dev_tools/requirements/deps/notebook.txt @@ -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