Skip to content

Commit 874431a

Browse files
committed
Update Python dependencies
1 parent 609beda commit 874431a

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pip>=20.3.4;python_version<"3.6"
2-
pip>=21.1.3;python_version>="3.6"
2+
pip>=21.2.1;python_version>="3.6"
33
packaging>=20.9;python_version<"3.6"
44
packaging>=21.0;python_version>="3.6"
55
typing-extensions>=3.10.0.0
@@ -82,7 +82,8 @@ ipython==7.16.1;python_version>="3.6" and python_version<"3.7"
8282
ipython==7.25.0;python_version>="3.7"
8383
matplotlib-inline==0.1.2;python_version>="3.7"
8484
colorama==0.4.4
85-
platformdirs==2.0.2
85+
platformdirs==2.0.2;python_version<"3.6"
86+
platformdirs==2.2.0;python_version>="3.6"
8687
pathlib2==2.3.5;python_version<"3.5"
8788
importlib-metadata==2.0.0;python_version<"3.6"
8889
virtualenv>=20.6.0

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
115115
install_requires=[
116116
'pip>=20.3.4;python_version<"3.6"',
117-
'pip>=21.1.3;python_version>="3.6"',
117+
'pip>=21.2.1;python_version>="3.6"',
118118
'packaging>=20.9;python_version<"3.6"',
119119
'packaging>=21.0;python_version>="3.6"',
120120
"typing-extensions>=3.10.0.0",
@@ -197,7 +197,8 @@
197197
'ipython==7.25.0;python_version>="3.7"',
198198
'matplotlib-inline==0.1.2;python_version>="3.7"',
199199
"colorama==0.4.4",
200-
"platformdirs==2.0.2",
200+
'platformdirs==2.0.2;python_version<"3.6"',
201+
'platformdirs==2.2.0;python_version>="3.6"',
201202
'pathlib2==2.3.5;python_version<"3.5"', # Sync with "virtualenv"
202203
'importlib-metadata==2.0.0;python_version<"3.6"', # Sync "virtualenv"
203204
"virtualenv>=20.6.0", # Sync with importlib-metadata and pathlib2

0 commit comments

Comments
 (0)