Skip to content

Commit

Permalink
Refresh Python dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mdmintz committed Jun 30, 2022
1 parent 94ba70b commit e7056af
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 5 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,15 @@ jedi==0.18.1;python_version>="3.6"
idna==2.10;python_version<"3.6"
idna==3.3;python_version>="3.6"
chardet==3.0.4;python_version<"3.5"
chardet==4.0.0;python_version>="3.5"
charset-normalizer==2.0.12;python_version>="3.5"
chardet==4.0.0;python_version>="3.5" and python_version<"3.7"
chardet==5.0.0;python_version>="3.7"
charset-normalizer==2.0.12;python_version>="3.5" and python_version<"3.7"
charset-normalizer==2.1.0;python_version>="3.7"
urllib3==1.26.9
requests==2.27.1;python_version<"3.5"
requests==2.25.1;python_version>="3.5" and python_version<"3.6"
requests==2.27.1;python_version>="3.6" and python_version<"3.7"
requests==2.28.0;python_version>="3.7"
requests==2.28.1;python_version>="3.7"
nose==1.3.7
sniffio==1.2.0;python_version>="3.7"
h11==0.13.0;python_version>="3.7"
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,13 +159,15 @@
'idna==2.10;python_version<"3.6"', # Must stay in sync with "requests"
'idna==3.3;python_version>="3.6"', # Must stay in sync with "requests"
'chardet==3.0.4;python_version<"3.5"', # Stay in sync with "requests"
'chardet==4.0.0;python_version>="3.5"', # Stay in sync with "requests"
'charset-normalizer==2.0.12;python_version>="3.5"', # Sync "requests"
'chardet==4.0.0;python_version>="3.5" and python_version<"3.7"',
'chardet==5.0.0;python_version>="3.7"', # Stay in sync with "requests"
'charset-normalizer==2.0.12;python_version>="3.5" and python_version<"3.7"', # noqa: E501
'charset-normalizer==2.1.0;python_version>="3.7"', # Sync "requests"
"urllib3==1.26.9", # Must stay in sync with "requests"
'requests==2.27.1;python_version<"3.5"',
'requests==2.25.1;python_version>="3.5" and python_version<"3.6"',
'requests==2.27.1;python_version>="3.6" and python_version<"3.7"',
'requests==2.28.0;python_version>="3.7"',
'requests==2.28.1;python_version>="3.7"',
"nose==1.3.7",
'sniffio==1.2.0;python_version>="3.7"',
'h11==0.13.0;python_version>="3.7"',
Expand Down

0 comments on commit e7056af

Please sign in to comment.