Skip to content

Commit

Permalink
CI: Fix tests run on Python 3.10
Browse files Browse the repository at this point in the history
Commit c088710 "Support Python versions ≥ 3.8" added CI tests for Python
3.10, for YAML simplifies 3.10 to 3.1 (it's a number), which is not what
we want.

Let's be explicit about 3.10 (and in the future 3.20, 3.30, etc.)
  • Loading branch information
adrienverge committed Nov 30, 2023
1 parent c088710 commit f7a0879
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
strategy:
matrix:
python-version:
- 3.8
- 3.9
- 3.10
- 3.11
- 3.12
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down

0 comments on commit f7a0879

Please sign in to comment.