From e4a9609f79e689eb845689fe1492c5a56f1b5c65 Mon Sep 17 00:00:00 2001 From: Disconnect3d Date: Mon, 1 Nov 2021 15:04:36 +0100 Subject: [PATCH 1/2] Fix pyparsing version due to incompatibility with 3.x TL;DR: gixy does not work with latest pyparsing (3.x) versions, it fails with bogus parsing errors like: > ERROR Failed to parse config "/etc/nginx/nginx.conf": char 5 (line:1, col:6) or similar. --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index dbf6d5f..3c62066 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ -pyparsing>=1.5.5 +pyparsing==2.4.7 cached-property>=1.2.0 argparse>=1.4.0 six>=1.1.0 Jinja2>=2.8 -ConfigArgParse>=0.11.0 \ No newline at end of file +ConfigArgParse>=0.11.0 From 12d2ddb902784d5418bbdf3ff9ee8a564b3c4867 Mon Sep 17 00:00:00 2001 From: Disconnect3d Date: Mon, 1 Nov 2021 20:28:33 +0100 Subject: [PATCH 2/2] Update requirements.txt Co-authored-by: Sandro --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 3c62066..536500b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -pyparsing==2.4.7 +pyparsing>1.5,<3 cached-property>=1.2.0 argparse>=1.4.0 six>=1.1.0