Skip to content

Commit b372c9a

Browse files
committed
Add cpython 3.12 and pypy:3.10, add prereleases to ci
1 parent fd395ce commit b372c9a

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,12 @@ jobs:
7878
- "3.9"
7979
- "3.10"
8080
- "3.11"
81-
- "3.12.0-alpha - 3.12"
81+
- "3.12"
82+
- "3.13"
8283
- "pypy-3.8"
8384
- "pypy-3.9"
85+
- "pypy-3.10"
86+
- "pypy-3.11"
8487
include:
8588
- source: sdist
8689
artifact: dist/*.tar.gz
@@ -95,6 +98,7 @@ jobs:
9598
uses: actions/setup-python@v4
9699
with:
97100
python-version: ${{ matrix.python-version }}
101+
allow-prereleases: true
98102
- name: Install test dependencies
99103
run: |
100104
python -mpip install --upgrade pip

tox.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[tox]
22
min_version = 4.0
3-
env_list = py3{8,9,10,11}
4-
pypy3.{8,9}
3+
env_list = py3{8,9,10,11,12}
4+
pypy3.{8,9,10}
55
flake8, black
66
labels =
7-
test = py3{8,9,10,11},pypy3.{8,9}
8-
cpy = py3{8,9,10,11}
9-
pypy = pypy3.{8,9}
7+
test = py3{8,9,10,11,12},pypy3.{8,9,10}
8+
cpy = py3{8,9,10,11,12}
9+
pypy = pypy3.{8,9,10}
1010
check = flake8, black
1111

1212
[testenv]

0 commit comments

Comments
 (0)