Skip to content

Commit

Permalink
Clarify the version of astroid which is supported
Browse files Browse the repository at this point in the history
This doesn't preclude supporting other versions at some point,
however it will make it clearer which versions are supported
as well as making CI pass.
  • Loading branch information
PeterJCLaw committed Oct 24, 2023
1 parent 0af0b06 commit 24b24b9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,13 @@ install_requires =
setup_requires = setuptools>=44; setuptools_scm[toml]>=3.4.3

[options.extras_require]
test = astroid; pytest
astroid =
astroid >=1, <2; python_version < "3"
astroid >=2, <3; python_version >= "3"
test =
astroid >=1, <2; python_version < "3"
astroid >=2, <3; python_version >= "3"
pytest

[options.package_data]
asttokens = py.typed
Expand Down

0 comments on commit 24b24b9

Please sign in to comment.