Skip to content

Commit

Permalink
Merge pull request #491 from kurtmckee/rm-pypy-3.9
Browse files Browse the repository at this point in the history
Drop support for PyPy 3.9
  • Loading branch information
kurtmckee authored Dec 8, 2024
2 parents 26ba4f0 + 4c72ac2 commit e432421
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 15 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,15 @@ jobs:
fail-fast: false
matrix:
include:
- name: "Linux (CPython)"
- name: "Linux"
runner: "ubuntu-latest"
cpythons:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
tox-factors:
- "chardet"
cache-key-hash-files:
- "pyproject.toml"
- "requirements/*/requirements.txt"

- name: "Linux (PyPy)"
runner: "ubuntu-latest"
pypys:
- "3.9"
- "3.10"
tox-factors:
- "chardet"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Python support
--------------

* Support PyPy3.
* Support PyPy 3.10.
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
min_version = 4.17.0
envlist =
coverage_erase
py{3.13, 3.12, 3.11, 3.10, 3.9, py3.10, py3.9}{-chardet, }
py{3.13, 3.12, 3.11, 3.10, 3.9, py3.10}{-chardet, }
coverage_report
docs
mypy
labels =
ci-test-linux = py{3.13, 3.12, 3.11, 3.10, 3.9, py3.10, py3.9}-chardet
ci-test-linux = py{3.13, 3.12, 3.11, 3.10, 3.9, py3.10}-chardet
ci-test-macos = py{3.12, 3.9}-chardet
ci-test-windows = py{3.12, 3.9}-chardet
update = update
Expand All @@ -16,7 +16,7 @@ labels =
[testenv]
description = Run the test suite ({env_name})
depends =
py{3.13, 3.12, 3.11, 3.10, 3.9, py3.10, py3.9}{-chardet, }: coverage_erase
py{3.13, 3.12, 3.11, 3.10, 3.9, py3.10}{-chardet, }: coverage_erase
package = wheel
wheel_build_env = build_wheel
deps =
Expand All @@ -37,7 +37,7 @@ commands =
[testenv:coverage_report]
description = Report code coverage after testing
depends =
py{3.13, 3.12, 3.11, 3.10, 3.9, py3.10, py3.9}{-chardet, }
py{3.13, 3.12, 3.11, 3.10, 3.9, py3.10}{-chardet, }
deps =
coverage[toml]
commands_pre =
Expand Down

0 comments on commit e432421

Please sign in to comment.