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
JavaScriptDude 2022-10-30 20:39:51 -04:00 committed by GitHub
parent 641060d635
commit 1b98d4e12a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
pyparsing>=1.5.5
pyparsing>=1.5.5,<=2.4.7
cached-property>=1.2.0
argparse>=1.4.0
six>=1.1.0