From 456af4e5d98e97ae6b415bd95eed2e71b81be3db Mon Sep 17 00:00:00 2001 From: Paul Fitzpatrick Date: Wed, 17 Jul 2024 17:24:05 -0400 Subject: [PATCH] bump Python version for tests, no longer supporting 3.9 --- .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 7069ab503a..52d75de63f 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 272e3f313a..547e85993e 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 17bf4de67c..e2ba658a5b 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