mirror of https://github.com/yandex/gixy
Fix #125 - Don't install newer versions of pyparsing than v3
parent
e9008dcbd1
commit
2d7fff36c6
|
@ -1,4 +1,4 @@
|
||||||
pyparsing>=1.5.5
|
pyparsing>=1.5.5,<3
|
||||||
cached-property>=1.2.0
|
cached-property>=1.2.0
|
||||||
argparse>=1.4.0
|
argparse>=1.4.0
|
||||||
six>=1.1.0
|
six>=1.1.0
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -17,7 +17,7 @@ setup(
|
||||||
author_email='buglloc@yandex.ru',
|
author_email='buglloc@yandex.ru',
|
||||||
url='https://github.com/yandex/gixy',
|
url='https://github.com/yandex/gixy',
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'pyparsing>=1.5.5',
|
'pyparsing>=1.5.5,<3',
|
||||||
'cached-property>=1.2.0',
|
'cached-property>=1.2.0',
|
||||||
'argparse>=1.4.0;python_version<"3.2"',
|
'argparse>=1.4.0;python_version<"3.2"',
|
||||||
'six>=1.1.0',
|
'six>=1.1.0',
|
||||||
|
|
Loading…
Reference in New Issue