Skip to content

Commit 0ff8f20

Browse files
committed
feat(deps): add support for Python 3.13 and later
1 parent 0cfbf76 commit 0ff8f20

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

.circleci/config.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ executors:
2929
docker:
3030
- image: python:3.12-alpine
3131
resource_class: small
32+
py313:
33+
docker:
34+
- image: python:3.13-alpine
35+
resource_class: small
3236
pypy737: # py38
3337
docker:
3438
- image: pypy:3-7.3.7-slim
@@ -169,7 +173,7 @@ workflows:
169173
name: test-<<matrix.executor>>
170174
matrix:
171175
parameters:
172-
executor: [py38, py39, py310, py311, py312]
176+
executor: [py38, py39, py310, py311, py312, py313]
173177
- toxpypy:
174178
name: test-<<matrix.executor>>
175179
matrix:

poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ coveralls = "coveralls.cli:main"
3131
python-coveralls = "coveralls.cli:main"
3232

3333
[tool.poetry.dependencies]
34-
python = ">=3.8,<3.13"
34+
python = ">=3.8"
3535
coverage = { version = ">=5.0,<8.0,!=6.0.*,!=6.1,!=6.1.1", extras = ["toml"] }
3636
docopt = ">=0.6.1,<0.7.0"
3737
requests = ">=1.0.0,<3.0.0"

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{38,39,310,311,312,py3}-cov{5,6,7}-{default,pyyaml}
2+
envlist = py{38,39,310,311,312,313,py3}-cov{5,6,7}-{default,pyyaml}
33

44
[gh-actions]
55
python =
@@ -8,6 +8,7 @@ python =
88
3.10: py310,upload
99
3.11: py311,upload
1010
3.12: py312,upload
11+
3.13: py313,upload
1112

1213
[testenv]
1314
passenv = *

0 commit comments

Comments
 (0)