You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
687 B

  1. From d3e00a4958af046879f24de365d5589d861ea6ef Mon Sep 17 00:00:00 2001
  2. From: Naor Livne <naorlivne@gmail.com>
  3. Date: Tue, 5 Jan 2021 16:31:15 +0200
  4. Subject: [PATCH 2/2] Update setup.py
  5. MIME-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. Co-authored-by: Mickaël Schoentgen <contact@tiger-222.fr>
  9. ---
  10. setup.py | 3 ++-
  11. 1 file changed, 2 insertions(+), 1 deletion(-)
  12. --- a/setup.py
  13. +++ b/setup.py
  14. @@ -43,7 +43,8 @@ packages = ['requests']
  15. requires = [
  16. 'chardet>=3.0.2,<5',
  17. - 'idna>=2.5,<4',
  18. + 'idna>=2.5,<3 ; python_version < "3"',
  19. + 'idna>=2.5,<4 ; python_version >= "3"',
  20. 'urllib3>=1.21.1,<1.27',
  21. 'certifi>=2017.4.17'