Limit py-consul version depending on python version (#3336)

Latest release is incompatible with python < 3.9
This commit is contained in:
Alexander Kukushkin
2025-04-18 16:48:32 +02:00
committed by GitHub
parent 1ba9e68b4b
commit 32934b205f
2 changed files with 13 additions and 6 deletions
+3 -1
View File
@@ -3,7 +3,9 @@ boto3
PyYAML
kazoo>=1.3.1
python-etcd>=0.4.3,<0.5
py-consul>=1.1.1
py-consul>=1.1.1,<1.5.4; python_version=="3.6"
py-consul>=1.1.1,<1.6.0; python_version>"3.6" and python_version<"3.9"
py-consul>=1.1.1; python_version>="3.9"
click>=4.1
prettytable>=0.7
python-dateutil