Skip to content

Commit 44c2ff3

Browse files
authored
Merge pull request #8335 from hugovk/rm-pypy3.9
2 parents 1bf9fb4 + d92603a commit 44c2ff3

File tree

4 files changed

+2
-8
lines changed

4 files changed

+2
-8
lines changed

.ci/install.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,7 @@ if [[ $(uname) != CYGWIN* ]]; then
5353
fi
5454

5555
# Pyroma uses non-isolated build and fails with old setuptools
56-
if [[
57-
$GHA_PYTHON_VERSION == pypy3.9
58-
|| $GHA_PYTHON_VERSION == 3.9
59-
]]; then
56+
if [[ $GHA_PYTHON_VERSION == 3.9 ]]; then
6057
# To match pyproject.toml
6158
python3 -m pip install "setuptools>=67.8"
6259
fi

.github/workflows/test-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
strategy:
3636
fail-fast: false
3737
matrix:
38-
python-version: ["pypy3.10", "pypy3.9", "3.9", "3.10", "3.11", "3.12", "3.13"]
38+
python-version: ["pypy3.10", "3.9", "3.10", "3.11", "3.12", "3.13"]
3939

4040
timeout-minutes: 30
4141

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ jobs:
4242
]
4343
python-version: [
4444
"pypy3.10",
45-
"pypy3.9",
4645
"3.13",
4746
"3.12",
4847
"3.11",

.github/workflows/wheels.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ jobs:
4848
fail-fast: false
4949
matrix:
5050
python-version:
51-
- pp39
5251
- pp310
5352
- cp3{9,10,11}
5453
- cp3{12,13}
@@ -57,7 +56,6 @@ jobs:
5756
- manylinux_2_28
5857
- musllinux
5958
exclude:
60-
- { python-version: pp39, spec: musllinux }
6159
- { python-version: pp310, spec: musllinux }
6260

6361
steps:

0 commit comments

Comments
 (0)