Skip to content

Commit

Permalink
- fixed Python versions being passed as numbers (causes e.g. 3.10
Browse files Browse the repository at this point in the history
  to be interpreted as 3.1);
  • Loading branch information
jaltmayerpizzorno committed Apr 29, 2024
1 parent 33a2549 commit 5e92c99
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,22 @@ jobs:
python: [ '3.8', '3.9', 'pypy-3.9', '3.10', '3.11', '3.12', '3.13' ]
include:
- os: macos-13
python: 3.8
python: '3.8'
- os: macos-13
python: 3.9
python: '3.9'
- os: macos-13
python: 3.10
python: '3.10'
- os: macos-13
python: 3.11
python: '3.11'
exclude:
- os: macos-latest # Python 3.8 unavailable on macos-14
python: 3.8
python: '3.8'
- os: macos-latest # Python 3.9 unavailable on macos-14
python: 3.9
python: '3.9'
- os: macos-latest # "ImportError: dlopen(.../probe.cpython-311-darwin.so, 0x002): bad bind opcode 0x00"
python: 3.10
python: '3.10'
- os: macos-latest # "ImportError: dlopen(.../probe.cpython-311-darwin.so, 0x002): bad bind opcode 0x00"
python: 3.11
python: '3.11'

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 5e92c99

Please sign in to comment.