Skip to content

Commit

Permalink
Fix #125 - Don't install newer versions of pyparsing than v3
Browse files Browse the repository at this point in the history
  • Loading branch information
Darthfett authored and buglloc committed Jan 6, 2024
1 parent e9008dc commit 2d7fff3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pyparsing>=1.5.5
pyparsing>=1.5.5,<3
cached-property>=1.2.0
argparse>=1.4.0
six>=1.1.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
author_email='[email protected]',
url='https://github.com/yandex/gixy',
install_requires=[
'pyparsing>=1.5.5',
'pyparsing>=1.5.5,<3',
'cached-property>=1.2.0',
'argparse>=1.4.0;python_version<"3.2"',
'six>=1.1.0',
Expand Down

0 comments on commit 2d7fff3

Please sign in to comment.