Skip to content

Commit 1ae6fc3

Browse files
authored
Merge pull request #6802 from graingert/3.13
start testing on 3.13rc
2 parents f12ccbe + 5984296 commit 1ae6fc3

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

Diff for: .github/workflows/run-tests.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.9", "pypy-3.10"]
15+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.9", "pypy-3.10"]
1616
os: [ubuntu-22.04, macOS-latest, windows-latest]
1717
# Python 3.8 and 3.9 do not run on macOS-latest which
1818
# is now using arm64 hardware.
@@ -31,6 +31,7 @@ jobs:
3131
with:
3232
python-version: ${{ matrix.python-version }}
3333
cache: 'pip'
34+
allow-prereleases: true
3435
- name: Install dependencies
3536
run: |
3637
make

Diff for: requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-e .[socks]
22
pytest>=2.8.0,<9
33
pytest-cov
4-
pytest-httpbin==2.0.0
4+
pytest-httpbin==2.1.0
55
httpbin~=0.10.0
66
trustme
77
wheel

Diff for: setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"certifi>=2017.4.17",
4141
]
4242
test_requirements = [
43-
"pytest-httpbin==2.0.0",
43+
"pytest-httpbin==2.1.0",
4444
"pytest-cov",
4545
"pytest-mock",
4646
"pytest-xdist",
@@ -87,6 +87,7 @@
8787
"Programming Language :: Python :: 3.10",
8888
"Programming Language :: Python :: 3.11",
8989
"Programming Language :: Python :: 3.12",
90+
"Programming Language :: Python :: 3.13",
9091
"Programming Language :: Python :: 3 :: Only",
9192
"Programming Language :: Python :: Implementation :: CPython",
9293
"Programming Language :: Python :: Implementation :: PyPy",

Diff for: tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{38,39,310,311,312}-{default, use_chardet_on_py3}
2+
envlist = py{38,39,310,311,312,313}-{default, use_chardet_on_py3}
33

44
[testenv]
55
deps = -rrequirements-dev.txt

0 commit comments

Comments
 (0)