Skip to content

Commit 808c094

Browse files
Merge pull request #171 from WFP-VAM/fix/pin-click
Fix/pin click
2 parents b365b3c + 6f841e2 commit 808c094

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
- Reworked `csv_smooth.py`
3434
- New executable script
3535
- fix #83
36+
- #### v 1.0.1
37+
- pin `click` to version < 8
3638

3739
- ## v 0.3
3840
- #### v 0.3.0:

_version/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
VERSION_MAJOR = 1
1717
VERSION_MINOR = 0
18-
VERSION_PATCH = 0
18+
VERSION_PATCH = 1
1919

2020
VERSION_STRING = "%s.%s.%s" % (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)
2121

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
setup_requires=["pytest-runner"],
7070
tests_require=["pytest", "click"],
7171
install_requires=[
72-
"click>=7.1",
72+
"click>=7.0,<8.0",
7373
"numpy>=1.16.1",
7474
"gdal>=2",
7575
"h5py>=2.9",

0 commit comments

Comments
 (0)