Skip to content

Commit

Permalink
setup.py, requirements.txt: avoid pyparsing 3+ for the moment
Browse files Browse the repository at this point in the history
  • Loading branch information
decalage2 committed May 4, 2020
1 parent 297abf7 commit 750859c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,4 +1,4 @@
pyparsing>=2.1.0
pyparsing>=2.1.0,<3
olefile>=0.46
easygui
colorclass
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -317,7 +317,7 @@ def main():
test_suite="tests",
# scripts=scripts,
install_requires=[
"pyparsing>=2.1.0", # changed from 2.2.0 to 2.1.0 for issue #481
"pyparsing>=2.1.0,<3", # changed from 2.2.0 to 2.1.0 for issue #481
"olefile>=0.46",
"easygui",
'colorclass',
Expand Down

0 comments on commit 750859c

Please sign in to comment.