Skip to content

Commit

Permalink
Limit pyparsing to major version 2 (#471)
Browse files Browse the repository at this point in the history
  • Loading branch information
moyiz committed Oct 27, 2021
1 parent 42e1396 commit 20cd09e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions noxfile.py
Expand Up @@ -28,6 +28,7 @@ def coverage(*args):

# Once coverage 5 is used then `.coverage` can move into `pyproject.toml`.
session.install("coverage<5.0.0", "pretend", "pytest>=6.2.0", "pip>=9.0.2")
session.install(".")

if "pypy" not in session.python:
coverage(
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -48,7 +48,7 @@
author=about["__author__"],
author_email=about["__email__"],
python_requires=">=3.6",
install_requires=["pyparsing>=2.0.2"], # Needed to avoid issue #91
install_requires=["pyparsing>=2.0.2,<3"], # Needed to avoid issue #91
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
Expand Down

0 comments on commit 20cd09e

Please sign in to comment.