Skip to content

Commit

Permalink
feat(deps): add support for Python 3.13 and later
Browse files Browse the repository at this point in the history
  • Loading branch information
terop committed Dec 16, 2024
1 parent 0cfbf76 commit 0ff8f20
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ executors:
docker:
- image: python:3.12-alpine
resource_class: small
py313:
docker:
- image: python:3.13-alpine
resource_class: small
pypy737: # py38
docker:
- image: pypy:3-7.3.7-slim
Expand Down Expand Up @@ -169,7 +173,7 @@ workflows:
name: test-<<matrix.executor>>
matrix:
parameters:
executor: [py38, py39, py310, py311, py312]
executor: [py38, py39, py310, py311, py312, py313]
- toxpypy:
name: test-<<matrix.executor>>
matrix:
Expand Down
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ coveralls = "coveralls.cli:main"
python-coveralls = "coveralls.cli:main"

[tool.poetry.dependencies]
python = ">=3.8,<3.13"
python = ">=3.8"
coverage = { version = ">=5.0,<8.0,!=6.0.*,!=6.1,!=6.1.1", extras = ["toml"] }
docopt = ">=0.6.1,<0.7.0"
requests = ">=1.0.0,<3.0.0"
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{38,39,310,311,312,py3}-cov{5,6,7}-{default,pyyaml}
envlist = py{38,39,310,311,312,313,py3}-cov{5,6,7}-{default,pyyaml}

[gh-actions]
python =
Expand All @@ -8,6 +8,7 @@ python =
3.10: py310,upload
3.11: py311,upload
3.12: py312,upload
3.13: py313,upload

[testenv]
passenv = *
Expand Down

0 comments on commit 0ff8f20

Please sign in to comment.