Skip to content

Commit

Permalink
Revert "ci: Update Python versions to range 3.8 .. 3.12"
Browse files Browse the repository at this point in the history
This reverts commit 4c2c1b9.

aiohttp is not Python 3.12 ready yet: aio-libs/aiohttp#7646
  • Loading branch information
mhthies committed Nov 20, 2023
1 parent 4c2c1b9 commit 5e0cd4d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.10", "3.12"]
python-version: ["3.7", "3.9", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -50,10 +50,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.12
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: "3.12"
python-version: "3.11"
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -71,10 +71,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.12
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: "3.12"
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 5e0cd4d

Please sign in to comment.