From 4a01c68a504cc96cde190aad4525d9e2f403ad4f Mon Sep 17 00:00:00 2001 From: Paul Fitzpatrick Date: Wed, 17 Jul 2024 17:43:04 -0400 Subject: [PATCH] bump Python version for tests, no longer supporting 3.9 (#1112) After changes for `PREVIOUS` and related functions, we now depend on new versions of the `bisect` function. --- .github/workflows/docker_latest.yml | 2 +- .github/workflows/main.yml | 5 +---- README.md | 2 +- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docker_latest.yml b/.github/workflows/docker_latest.yml index 7069ab50..52d75de6 100644 --- a/.github/workflows/docker_latest.yml +++ b/.github/workflows/docker_latest.yml @@ -48,7 +48,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.9] + python-version: [3.11] node-version: [18.x] image: # We build two images, `grist-oss` and `grist`. diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 272e3f31..547e8599 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,7 +17,7 @@ jobs: # even when there is a failure. fail-fast: false matrix: - python-version: [3.9] + python-version: [3.11] node-version: [18.x] tests: - ':lint:python:client:common:smoke:stubs:' @@ -32,9 +32,6 @@ jobs: - tests: ':lint:python:client:common:smoke:' node-version: 18.x python-version: '3.10' - - tests: ':lint:python:client:common:smoke:' - node-version: 18.x - python-version: '3.11' steps: - uses: actions/checkout@v3 diff --git a/README.md b/README.md index 17bf4de6..e2ba658a 100644 --- a/README.md +++ b/README.md @@ -464,7 +464,7 @@ Then, you can run the main test suite like so: yarn test ``` -Python tests may also be run locally. (Note: currently requires Python 3.9 - 3.11.) +Python tests may also be run locally. (Note: currently requires Python 3.10 - 3.11.) ``` yarn test:python