Fix #125 - Don't install newer versions of pyparsing than v3

pull/141/head
Casey Kuball 2023-12-23 16:48:27 -07:00 committed by Andrew Krasichkov
parent e9008dcbd1
commit 2d7fff36c6
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -17,7 +17,7 @@ setup(
author_email='buglloc@yandex.ru',
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',