From 81a5691f1e0ff90ae57a2533d58df85d22715a81 Mon Sep 17 00:00:00 2001 From: berrytern Date: Tue, 17 Sep 2024 16:04:55 -0300 Subject: [PATCH 1/2] fix: resolve Python 3.8 CI pipeline failures #822. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 6c596fc..669bb66 100644 --- a/setup.py +++ b/setup.py @@ -12,6 +12,7 @@ "requests>=2.22,<3", "requests_cache>=1.1", "ruamel.yaml<=0.17.21", + "pyparsing>=3.1,<3.2", "progress_bar", "openpyxl", "unidecode", From 8e229cade5149e5d38c88d56297cf2177b488172 Mon Sep 17 00:00:00 2001 From: berrytern Date: Tue, 17 Sep 2024 16:24:53 -0300 Subject: [PATCH 2/2] fix: removing unnecessary lower boundaries for pyparsing --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 669bb66..cd785cc 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ "requests>=2.22,<3", "requests_cache>=1.1", "ruamel.yaml<=0.17.21", - "pyparsing>=3.1,<3.2", + "pyparsing<3.2", "progress_bar", "openpyxl", "unidecode",