Skip to content

Commit

Permalink
Merge pull request #125 from PeterJCLaw/clarify-astroid-versions
Browse files Browse the repository at this point in the history
Clarify the version of astroid which is supported
  • Loading branch information
alexmojaki authored Oct 24, 2023
2 parents 0af0b06 + 24b24b9 commit 88dc9f0
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 88dc9f0

Please sign in to comment.