diff --git a/conda/meta.yaml b/conda/meta.yaml index 29370595b82bb6435df83d49604462fc419c9b56..a13ae130be11c2721c7561d28882cf1156c062f6 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -31,7 +31,7 @@ requirements: run: - python - setuptools - - click + - click >=7 - click-plugins - conda=4 - conda-build=3 diff --git a/setup.py b/setup.py index 157d14a50dd0dd78eea4d962f5c1787a543f01da..518246bafc269f175a316162b54bae655fdf1452 100644 --- a/setup.py +++ b/setup.py @@ -7,9 +7,9 @@ version = open("version.txt").read().rstrip() requires = [ 'setuptools', - 'click', + 'click>=7.0.0', 'click-plugins', - 'conda-build', + 'conda-build>=3.0.0', 'certifi', 'requests', 'gitpython',