Compare commits

...

7 Commits

Author SHA1 Message Date
Roland Kurmann
9f1e9fab22 Merge branch 'master' into add_pypy 2025-11-14 16:13:22 +01:00
Roland Kurmann
d7570e4da2 Merge branch 'master' into add_pypy 2025-04-21 14:27:53 +02:00
scito
e11e545ea1 ci: exclude pypy3.10 and pypy3.11 for macos-latest 2025-03-03 22:24:21 +01:00
scito
a9df232cc3 ci: exclude pypy3.10 and pypy3.11 for ubuntu-24.04-arm 2025-03-03 22:24:21 +01:00
scito
94954cdee3 ci: exclude pypy versions on windows 2025-03-03 22:24:21 +01:00
scito
18c58d6cb8 ci: update setup-python action to use main branch to fix pypy and Linux arm64 incompatibility 2025-03-03 22:24:21 +01:00
scito
0ad14ab908 ci: add pypy3.10 and pypy3.11 2025-03-03 22:24:21 +01:00

View File

@@ -22,9 +22,21 @@ jobs:
fail-fast: false
matrix:
# 3.x is used to run code coverage
python-version: ["3.x", "3.14", "3.13", "3.12", "3.11", "3.10", "3.9"]
python-version: ["3.x", "3.14", "3.13", "3.12", "3.11", "3.10", "3.9", "pypy3.10", "pypy3.11"]
platform: [ubuntu-latest, macos-latest, windows-latest, ubuntu-24.04-arm, macos-15-intel]
# exclude:
exclude:
- python-version: "pypy3.10"
platform: "windows-latest"
- python-version: "pypy3.11"
platform: "windows-latest"
- python-version: "pypy3.10"
platform: "ubuntu-24.04-arm"
- python-version: "pypy3.11"
platform: "ubuntu-24.04-arm"
- python-version: "pypy3.10"
platform: "macos-latest"
- python-version: "pypy3.11"
platform: "macos-latest"
runs-on: ${{ matrix.platform }}