-
-
Notifications
You must be signed in to change notification settings - Fork 187
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
base: master
Are you sure you want to change the base?
Conversation
This should be reverted once: TheKevJames/coveralls-python#542 is merged.
@TheKevJames could you kindly check this PR? |
This should be reverted once: TheKevJames/coveralls-python#542 is merged.
This should be reverted once: TheKevJames/coveralls-python#542 is merged.
This should be reverted once: TheKevJames/coveralls-python#542 is merged.
This should be reverted once: TheKevJames/coveralls-python#542 is merged.
Any update? |
pyproject.toml
Outdated
@@ -31,7 +31,7 @@ coveralls = "coveralls.cli:main" | |||
python-coveralls = "coveralls.cli:main" | |||
|
|||
[tool.poetry.dependencies] | |||
python = ">=3.8,<3.13" | |||
python = ">=3.8,<3.14" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I recommend removing the upper limit, it will prevent this problem next year (and beyond) and also prevents us testing our projects on 3.14 now (it's already in alpha):
python = ">=3.8,<3.14" | |
python = ">=3.8" |
See https://iscinumpy.dev/post/bound-version-constraints/ for the long version.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed.
7fb2b53
to
0ff8f20
Compare
Python 3.13 has been released last week so add support for it so that early adopters can use it.