Skip to content

Commit 2eac65d

Browse files
consistently use python 3.8->3.13 + pypy3.10 in tests
1 parent 6876d93 commit 2eac65d

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: blacksmith-4vcpu-ubuntu-2204
88
strategy:
99
matrix:
10-
python-version: [3.8,3.9,"3.10","3.12"]
10+
python-version: ["3.9","3.10","3.11","3.12","3.13","pypy3.10"]
1111
steps:
1212
- name: Check out code from GitHub
1313
uses: actions/checkout@v4

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
Development Status :: 5 - Production/Stable
1616
Programming Language :: Python
1717
Programming Language :: Python :: 3
18-
Programming Language :: Python :: 3.8
1918
Programming Language :: Python :: 3.9
2019
Programming Language :: Python :: 3.10
2120
Programming Language :: Python :: 3.11

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
{pypy3,3.9,3.10,3.11,3.12,3.13}-unit
3+
{pypy3.10,3.9,3.10,3.11,3.12,3.13}-unit
44
flake8
55
apicheck
66
pydocstyle
@@ -19,7 +19,7 @@ commands = py.test -xv --cov=vine --cov-report=xml --no-cov-on-fail t/unit {posa
1919

2020
basepython =
2121
flake8,apicheck,linkcheck,pydocstyle: python3.10
22-
pypy3: pypy3.10
22+
pypy3.10: pypy3.10
2323
3.9: python3.9
2424
3.10: python3.10
2525
3.11: python3.11

0 commit comments

Comments
 (0)