Skip to content

Commit

Permalink
tomli: Don't worry about specific alpha releases (#3448)
Browse files Browse the repository at this point in the history
This prevents bugs due to pypa/packaging#522.

Fixes #3447.
  • Loading branch information
JelleZijlstra committed Dec 18, 2022
1 parent 23b92b4 commit cd9fef8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGES.md
Expand Up @@ -35,6 +35,9 @@

- Upgrade mypyc from `0.971` to `0.991` so mypycified _Black_ can be built on armv7
(#3380)
- Drop specific support for the `tomli` requirement on 3.11 alpha releases, working
around a bug that would cause the requirement not to be installed on any non-final
Python releases (#3448)

### Parser

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -67,7 +67,7 @@ dependencies = [
"mypy_extensions>=0.4.3",
"pathspec>=0.9.0",
"platformdirs>=2",
"tomli>=1.1.0; python_full_version < '3.11.0a7'",
"tomli>=1.1.0; python_version < '3.11'",
"typed-ast>=1.4.2; python_version < '3.8' and implementation_name == 'cpython'",
"typing_extensions>=3.10.0.0; python_version < '3.10'",
]
Expand Down

0 comments on commit cd9fef8

Please sign in to comment.