Skip to content

Commit

Permalink
relax click and pyyaml restrictions
Browse files Browse the repository at this point in the history
  • Loading branch information
bkad committed Nov 10, 2022
1 parent 17bbb0d commit adedbcc
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion curator/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Curator Version"""
__version__ = '5.8.3'
__version__ = '5.8.3-dev2'
6 changes: 4 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ classifiers =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10

[options]
install_requires =
Expand All @@ -29,7 +31,7 @@ install_requires =
boto3>=1.9.142
requests_aws4auth>=0.9
click>=6.7,<7.0
pyyaml==3.13
pyyaml
certifi>=2019.9.11
six>=1.11.0

Expand All @@ -41,7 +43,7 @@ setup_requires =
boto3>=1.9.142
requests_aws4auth>=0.9
click>=6.7,<7.0
pyyaml==3.13
pyyaml
certifi>=2019.9.11
six>=1.11.0

Expand Down
13 changes: 9 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ def get_version():
return VERSION

def get_install_requires():
res = ['elasticsearch==7.1.0' ]
res.append('urllib3>=1.24.2,<1.26')
res = ['elasticsearch' ]
res.append('urllib3>=1.24.2')
res.append('requests>=2.20.0')
res.append('boto3>=1.9.142')
res.append('requests_aws4auth>=0.9')
res.append('click>=6.7,<7.0')
res.append('pyyaml==3.13')
res.append('click')
res.append('pyyaml')
res.append('voluptuous>=0.9.3')
res.append('certifi>=2019.9.11')
res.append('six>=1.11.0')
Expand Down Expand Up @@ -134,6 +134,8 @@ def get_install_requires():
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
test_suite = "test.run_tests.run_all",
tests_require = ["mock", "nose", "coverage", "nosexcover"],
Expand Down Expand Up @@ -173,6 +175,9 @@ def get_install_requires():
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
test_suite = "test.run_tests.run_all",
tests_require = ["mock", "nose", "coverage", "nosexcover"]
Expand Down

0 comments on commit adedbcc

Please sign in to comment.