Skip to content

Commit df84060

Browse files
authored
explicitly require chardet since requests 2.26.0 no longer depends on it (#308)
* explicitly require chardet since requests 2.26.0 no longer depends on it * changelog and bump version
1 parent 9946ade commit df84060

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
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.8.1 - 2021-07-14
12+
13+
### Fixed
14+
15+
- The `chardet` library is now an explicit dependency, resolving dependency issues for fresh installations using latest `requests` v.2.26.0
16+
1117
## 1.8.0 - 2021-07-08
1218

1319
### Fixed

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
zip_safe=False,
3232
python_requires=">3, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4",
3333
install_requires=[
34+
"chardet>=4.0.0",
3435
"click>=7.1.1, <8",
3536
"click_plugins>=1.1.1",
3637
"colorama>=0.4.3",

src/code42cli/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.8.0"
1+
__version__ = "1.8.1"

0 commit comments

Comments
 (0)