Skip to content

Commit ce7258d

Browse files
authored
update install req for click (#393)
1 parent bac23a3 commit ce7258d

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
The intended audience of this file is for py42 consumers -- as such, changes that don't affect
99
how a consumer would use the library (e.g. adding unit tests, updating documentation, etc) are not captured here.
1010

11+
## 1.16.2 - 2022-11-07
12+
13+
### Fixed
14+
15+
- Updated setup requirements to allow for install with any `click` version `>=7.1.1`
16+
1117
## 1.16.1 - 2022-10-10
1218

1319
### Added

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
python_requires=">=3.6.2, <4",
3333
install_requires=[
3434
"chardet",
35-
"click==7.1.1",
35+
"click>=7.1.1",
3636
"click_plugins>=1.1.1",
3737
"colorama>=0.4.3",
3838
"keyring==18.0.1",

src/code42cli/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.16.1"
1+
__version__ = "1.16.2"

0 commit comments

Comments
 (0)