Skip to content

Commit e432421

Browse files
authored
Merge pull request #491 from kurtmckee/rm-pypy-3.9
Drop support for PyPy 3.9
2 parents 26ba4f0 + 4c72ac2 commit e432421

File tree

3 files changed

+6
-15
lines changed

3 files changed

+6
-15
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,24 +16,15 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
include:
19-
- name: "Linux (CPython)"
19+
- name: "Linux"
2020
runner: "ubuntu-latest"
2121
cpythons:
2222
- "3.9"
2323
- "3.10"
2424
- "3.11"
2525
- "3.12"
2626
- "3.13"
27-
tox-factors:
28-
- "chardet"
29-
cache-key-hash-files:
30-
- "pyproject.toml"
31-
- "requirements/*/requirements.txt"
32-
33-
- name: "Linux (PyPy)"
34-
runner: "ubuntu-latest"
3527
pypys:
36-
- "3.9"
3728
- "3.10"
3829
tox-factors:
3930
- "chardet"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Python support
22
--------------
33

4-
* Support PyPy3.
4+
* Support PyPy 3.10.

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
min_version = 4.17.0
33
envlist =
44
coverage_erase
5-
py{3.13, 3.12, 3.11, 3.10, 3.9, py3.10, py3.9}{-chardet, }
5+
py{3.13, 3.12, 3.11, 3.10, 3.9, py3.10}{-chardet, }
66
coverage_report
77
docs
88
mypy
99
labels =
10-
ci-test-linux = py{3.13, 3.12, 3.11, 3.10, 3.9, py3.10, py3.9}-chardet
10+
ci-test-linux = py{3.13, 3.12, 3.11, 3.10, 3.9, py3.10}-chardet
1111
ci-test-macos = py{3.12, 3.9}-chardet
1212
ci-test-windows = py{3.12, 3.9}-chardet
1313
update = update
@@ -16,7 +16,7 @@ labels =
1616
[testenv]
1717
description = Run the test suite ({env_name})
1818
depends =
19-
py{3.13, 3.12, 3.11, 3.10, 3.9, py3.10, py3.9}{-chardet, }: coverage_erase
19+
py{3.13, 3.12, 3.11, 3.10, 3.9, py3.10}{-chardet, }: coverage_erase
2020
package = wheel
2121
wheel_build_env = build_wheel
2222
deps =
@@ -37,7 +37,7 @@ commands =
3737
[testenv:coverage_report]
3838
description = Report code coverage after testing
3939
depends =
40-
py{3.13, 3.12, 3.11, 3.10, 3.9, py3.10, py3.9}{-chardet, }
40+
py{3.13, 3.12, 3.11, 3.10, 3.9, py3.10}{-chardet, }
4141
deps =
4242
coverage[toml]
4343
commands_pre =

0 commit comments

Comments
 (0)