Skip to content
Merged
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
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ py_modules = flake8_import_order
install_requires =
pycodestyle
setuptools
python_requires > = 3.9
Copy link

Choose a reason for hiding this comment

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

This syntax is incorrect for a setuptools config file. As far as I can tell this line is essentially ignored and the latest flake8-import-order version is still the one chosen on Python <=3.8.

The correct syntax would be

python_requires = >=3.9

tests_require =
pytest
flake8
Expand Down