-
Couldn't load subscription status.
- Fork 2
Backport 3.12 and Below #26
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
base: main
Are you sure you want to change the base?
Changes from 9 commits
61d4da8
92a7d7a
9d0d2cc
c1bc953
983a480
6ae13c3
be3a95c
a6da1f6
cbfc982
fc80c20
ebda5ab
8406889
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,8 +5,10 @@ authors = [ | |
| {name = "Andrew Svetlov",email = "[email protected]"} | ||
| ] | ||
| readme = "README.md" | ||
| requires-python = ">=3.13" | ||
| requires-python = ">=3.9" | ||
| dependencies = [ | ||
| 'exceptiongroup==1.3.0; python_version<"3.11"', | ||
| 'backports-asyncio-queues==0.1.2; python_version<"3.13"' | ||
| ] | ||
| dynamic = ["version"] | ||
|
|
||
|
|
@@ -20,12 +22,12 @@ enable = true | |
|
|
||
| [tool.poetry] | ||
| version = "0.0.0" | ||
|
|
||
| [tool.poetry.group.dev.dependencies] | ||
| mypy = "^1.15.0" | ||
| coverage = "^7.6.11" | ||
|
|
||
| [tool.ruff] | ||
| target-version = "py313" | ||
| line-length = 79 | ||
|
|
||
| [tool.ruff.lint] | ||
|
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please, fix the file encoding to be UTF-8. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
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.
Core packaging metadata mustn't use pins. Lower bounds are acceptable, and occasional known broken version exclusions.
Also,
backports-asyncio-queuesdoesn't have any provenance metadata. So we should be careful. I think I've found potential source for it on GH. It must be verified and the project persuaded to at least start using trusted publishing and have other verifiable links to the source. The patch below also makes specs sparse, which is more readable.