summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2022-11-06 13:07:27 +0200
committerAlex Grönholm <alex.gronholm@nextday.fi>2022-11-06 13:07:27 +0200
commit7f46c364ac7cebcebeb781c7310f3ff214ffa8b0 (patch)
tree641599b394e774300ec4da91a5a4baef2ec01433
parentda30cc8fbb9fee189cdd283ca88f9d125fd125e4 (diff)
downloadapscheduler-7f46c364ac7cebcebeb781c7310f3ff214ffa8b0.tar.gz
Use Python 3.11 (final) as the high-end Python version
-rw-r--r--.github/workflows/test.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 3d27b53..c5f70f5 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- python-version: ["3.7", "3.10", "3.11-dev", "pypy-3.9"]
+ python-version: ["3.7", "3.11", "pypy-3.9"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
@@ -30,10 +30,10 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, windows-latest]
- python-version: ["3.7", "3.9", "3.10"]
+ python-version: ["3.7", "3.11"]
exclude:
- os: windows-latest
- python-version: "3.10" # won't compile psycopg2
+ python-version: "3.11" # won't compile psycopg2
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3