Skip to content

Commit

Permalink
ci: avoid inconsistently naming Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
darosior committed Jul 22, 2024
1 parent bbf0c94 commit 37a7fda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
tests:
strategy:
matrix:
python-version: [3.8, 3.9, '3.10', 3.11, 3.12]
python-version: [3.8, 3.9, 3.10, 3.11, 3.12]
os:
- ubuntu-latest
- macos-13 (non-M1)
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
python-version: '3.10' # String necessary otherwise interpreted as 3.1
- name: Testing with Coincurve ${{ matrix.coincurve-version }}
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 37a7fda

Please sign in to comment.