Skip to content

Commit

Permalink
build: Update lower bound of click to v8.0.0 (#1958)
Browse files Browse the repository at this point in the history
* Update lower bound of the supported click versions to v8.0.0 as it
is required to support behavior in PR #1909 due to click v7.x not
setting the type correctly for path type arguments.
   - c.f. #1957 (comment)
* Update tests/constraints.txt to use click==8.0.0.
  • Loading branch information
matthewfeickert authored Aug 26, 2022
1 parent 3ac885e commit fc9ffd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ include_package_data = True
python_requires = >=3.7
install_requires =
scipy>=1.1.0 # requires numpy, which is required by pyhf and tensorflow
click>=7.0 # for console scripts
click>=8.0.0 # for console scripts
tqdm>=4.56.0 # for readxml
jsonschema>=3.0.0 # for utils
jsonpatch>=1.15
Expand Down
2 changes: 1 addition & 1 deletion tests/constraints.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# core
scipy==1.1.0
click==7.0
click==8.0.0 # c.f. PR #1958, #1909
tqdm==4.56.0
jsonschema==3.0.0
jsonpatch==1.15
Expand Down

0 comments on commit fc9ffd1

Please sign in to comment.