Skip to content

Commit 6f52524

Browse files
authored
Remove Python constraint (#163)
1 parent c6f1583 commit 6f52524

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ jobs:
179179
runs-on: ubuntu-latest
180180
strategy:
181181
matrix:
182-
python-version: [3.8, 3.9]
182+
python-version: [3.8, 3.9, "3.10"]
183183
outputs:
184184
python-key: ${{ steps.generate-python-key.outputs.key }}
185185
steps:

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ so always check `git diff` before comitting any changes!
1717
Since this tool uses [pyupgrade][pyu], it's best used for
1818
projects that use it already.
1919

20+
**Python 3.10**
21+
This tool depends on `autoflake` which doesn't yet support Python 3.10.
22+
However, you can use `3.10` to update older Python syntax.
23+
2024

2125
## Limitations
2226
Due to the way the tool works, it will reorder the imports multiple times.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ classifier =
2121

2222
[options]
2323
packages = find:
24-
python_requires = >=3.8,<3.10
24+
python_requires = >=3.8
2525
include_package_data = True
2626
install_requires =
2727
aiofiles==0.8.0

0 commit comments

Comments
 (0)