summaryrefslogtreecommitdiff
path: root/dev-python/requests/files/requests-2.27.1-unpin-charset-normalizer.patch
blob: 418cb519ffb6df307963f9fa3fc4a5de62105e66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
https://github.com/psf/requests/pull/6169
https://bugs.gentoo.org/853247

--- a/requests.egg-info/requires.txt
+++ b/requests.egg-info/requires.txt
@@ -6,7 +6,7 @@ chardet<5,>=3.0.2
 idna<3,>=2.5
 
 [:python_version >= "3"]
-charset_normalizer~=2.0.0
+charset_normalizer~=2.0
 idna<4,>=2.5
 
 [security]
--- a/setup.py
+++ b/setup.py
@@ -41,7 +41,7 @@ if sys.argv[-1] == 'publish':
 packages = ['requests']
 
 requires = [
-    'charset_normalizer~=2.0.0; python_version >= "3"',
+    'charset_normalizer~=2.0; python_version >= "3"',
     'chardet>=3.0.2,<5; python_version < "3"',
     'idna>=2.5,<3; python_version < "3"',
     'idna>=2.5,<4; python_version >= "3"',