Skip to content

Commit 0a3ba5f

Browse files
committed
Refresh Python dependencies
1 parent f7ca60f commit 0a3ba5f

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

requirements.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
pip>=20.3.4;python_version<"3.6"
22
pip>=21.3.1;python_version>="3.6" and python_version<"3.7"
3-
pip>=22.1.2;python_version>="3.7"
3+
pip>=22.2.1;python_version>="3.7"
44
packaging>=20.9;python_version<"3.6"
55
packaging>=21.3;python_version>="3.6"
66
setuptools>=44.1.1;python_version<"3.6"
77
setuptools>=59.6.0;python_version>="3.6" and python_version<"3.7"
8-
setuptools>=63.2.0;python_version>="3.7"
8+
setuptools>=63.3.0;python_version>="3.7"
99
tomli>=1.2.3;python_version>="3.6" and python_version<"3.7"
1010
tomli>=2.0.1;python_version>="3.7"
1111
wheel>=0.37.1
12-
attrs>=21.4.0
12+
attrs>=21.4.0;python_version<"3.6"
13+
attrs>=22.1.0;python_version>="3.6"
1314
PyYAML>=6.0;python_version>="3.6"
1415
traitlets>=4.3.3;python_version<"3.7"
1516
traitlets>=5.3.0;python_version>="3.7"
@@ -35,7 +36,7 @@ chardet==4.0.0;python_version>="3.6" and python_version<"3.7"
3536
chardet==5.0.0;python_version>="3.7"
3637
charset-normalizer==2.0.12;python_version>="3.6" and python_version<"3.7"
3738
charset-normalizer==2.1.0;python_version>="3.7"
38-
urllib3==1.26.10
39+
urllib3==1.26.11
3940
requests==2.27.1;python_version<"3.6"
4041
requests==2.27.1;python_version>="3.6" and python_version<"3.7"
4142
requests==2.28.1;python_version>="3.7"

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,16 +126,17 @@
126126
install_requires=[
127127
'pip>=20.3.4;python_version<"3.6"',
128128
'pip>=21.3.1;python_version>="3.6" and python_version<"3.7"',
129-
'pip>=22.1.2;python_version>="3.7"',
129+
'pip>=22.2.1;python_version>="3.7"',
130130
'packaging>=20.9;python_version<"3.6"',
131131
'packaging>=21.3;python_version>="3.6"',
132132
'setuptools>=44.1.1;python_version<"3.6"',
133133
'setuptools>=59.6.0;python_version>="3.6" and python_version<"3.7"',
134-
'setuptools>=63.2.0;python_version>="3.7"',
134+
'setuptools>=63.3.0;python_version>="3.7"',
135135
'tomli>=1.2.3;python_version>="3.6" and python_version<"3.7"',
136136
'tomli>=2.0.1;python_version>="3.7"',
137137
"wheel>=0.37.1",
138-
"attrs>=21.4.0",
138+
'attrs>=21.4.0;python_version<"3.6"',
139+
'attrs>=22.1.0;python_version>="3.6"',
139140
'PyYAML>=6.0;python_version>="3.6"',
140141
'traitlets>=4.3.3;python_version<"3.7"',
141142
'traitlets>=5.3.0;python_version>="3.7"',
@@ -161,7 +162,7 @@
161162
'chardet==5.0.0;python_version>="3.7"', # Stay in sync with "requests"
162163
'charset-normalizer==2.0.12;python_version>="3.6" and python_version<"3.7"', # noqa: E501
163164
'charset-normalizer==2.1.0;python_version>="3.7"', # Sync "requests"
164-
'urllib3==1.26.10', # Stay in sync with "requests"
165+
'urllib3==1.26.11', # Stay in sync with "requests"
165166
'requests==2.27.1;python_version<"3.7"',
166167
'requests==2.28.1;python_version>="3.7"',
167168
"nose==1.3.7",

0 commit comments

Comments
 (0)