mirror of https://github.com/yandex/gixy
Lock pyparsing to 2.4.7 Maximum
I am writing a nginx/wsgi management tool called `pynx` that uses your excellent tools to parse the nginx config files. While testing on one of my production servers it failed with the error `Skip unparseable block: "server"`. I disovered that the server failing was using `pyparsing` 3.0.9. I was able to fix this by downgrading to the last stable 2.x release of 2.4.7.pull/132/head
parent
641060d635
commit
1b98d4e12a
|
@ -1,6 +1,6 @@
|
|||
pyparsing>=1.5.5
|
||||
pyparsing>=1.5.5,<=2.4.7
|
||||
cached-property>=1.2.0
|
||||
argparse>=1.4.0
|
||||
six>=1.1.0
|
||||
Jinja2>=2.8
|
||||
ConfigArgParse>=0.11.0
|
||||
ConfigArgParse>=0.11.0
|
||||
|
|
Loading…
Reference in New Issue