Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(deps): add support for Python 3.13 and later #542

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
python = ">=3.8"
python = "^3.8"

This might be a better fit because it would allow any Python version 3.x that is newer than 3.8, but would intentionally break at any higher major version, such as Python 4.x, even if this is not yet foreseeable.

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