Skip to content

Commit

Permalink
Allow charset normalizer >=2 and <3 (#6169)
Browse files Browse the repository at this point in the history
  • Loading branch information
frenzymadness committed Jun 29, 2022
1 parent 73793ce commit 0e28c8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -5,7 +5,7 @@ provides-extra =
use_chardet_on_py3
requires-dist =
certifi>=2017.4.17
charset_normalizer~=2.0.0
charset_normalizer>=2,<3
idna>=2.5,<4
urllib3>=1.21.1,<1.27

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -59,7 +59,7 @@ def run_tests(self):
sys.exit()

requires = [
"charset_normalizer~=2.0.0",

This comment has been minimized.

Copy link
@isavishal

isavishal Jul 2, 2022

"charset_normalizer!=2.0",

"charset_normalizer>=2,<3",

This comment has been minimized.

Copy link
@isavishal

isavishal Jul 2, 2022

"charset_normalizer>=2",
"charset_normalizer<3",

"idna>=2.5,<4",
"urllib3>=1.21.1,<1.27",
"certifi>=2017.4.17",
Expand Down

0 comments on commit 0e28c8f

Please sign in to comment.