Skip to content

Commit 0c2ab28

Browse files
committed
Refresh Python dependencies
1 parent 5e8095a commit 0c2ab28

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ pip>=25.0.1;python_version<"3.9"
22
pip>=25.1.1;python_version>="3.9"
33
packaging>=25.0
44
setuptools~=70.2;python_version<"3.10"
5-
setuptools>=80.8.0;python_version>="3.10"
5+
setuptools>=80.9.0;python_version>="3.10"
66
wheel>=0.45.1
77
attrs>=25.3.0
88
certifi>=2025.4.26
@@ -35,7 +35,7 @@ chardet==5.2.0
3535
charset-normalizer>=3.4.2,<4
3636
urllib3>=1.26.20,<2;python_version<"3.10"
3737
urllib3>=1.26.20,<2.5.0;python_version>="3.10"
38-
requests==2.32.3
38+
requests==2.32.4
3939
sniffio==1.3.1
4040
h11==0.16.0
4141
outcome==1.3.0.post0
@@ -54,7 +54,8 @@ execnet==2.1.1
5454
iniconfig==2.1.0
5555
pluggy==1.5.0;python_version<"3.9"
5656
pluggy==1.6.0;python_version>="3.9"
57-
pytest==8.3.5
57+
pytest==8.3.5;python_version<"3.9"
58+
pytest==8.4.0;python_version>="3.9"
5859
pytest-html==4.0.2
5960
pytest-metadata==3.1.1
6061
pytest-ordering==0.6

setup.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,6 @@
5656
os.system("python -m pip install --upgrade 'jaraco.classes'")
5757
print("\n*** Installing more-itertools: *** (For PyPI uploads)\n")
5858
os.system("python -m pip install --upgrade 'more-itertools'")
59-
print("\n*** Installing zipp: *** (Required for PyPI uploads)\n")
60-
os.system("python -m pip install --upgrade 'zipp'")
61-
print("\n*** Installing importlib-metadata: *** (For PyPI uploads)\n")
62-
os.system("python -m pip install --upgrade 'importlib-metadata'")
6359
print("\n*** Installing keyring, requests-toolbelt: *** (For PyPI)\n")
6460
os.system("python -m pip install --upgrade keyring requests-toolbelt")
6561
print("\n*** Installing twine: *** (Required for PyPI uploads)\n")
@@ -153,7 +149,7 @@
153149
'pip>=25.1.1;python_version>="3.9"',
154150
'packaging>=25.0',
155151
'setuptools~=70.2;python_version<"3.10"', # Newer ones had issues
156-
'setuptools>=80.8.0;python_version>="3.10"',
152+
'setuptools>=80.9.0;python_version>="3.10"',
157153
'wheel>=0.45.1',
158154
'attrs>=25.3.0',
159155
"certifi>=2025.4.26",
@@ -186,7 +182,7 @@
186182
'charset-normalizer>=3.4.2,<4',
187183
'urllib3>=1.26.20,<2;python_version<"3.10"',
188184
'urllib3>=1.26.20,<2.5.0;python_version>="3.10"',
189-
'requests==2.32.3',
185+
'requests==2.32.4',
190186
'sniffio==1.3.1',
191187
'h11==0.16.0',
192188
'outcome==1.3.0.post0',
@@ -205,7 +201,8 @@
205201
'iniconfig==2.1.0',
206202
'pluggy==1.5.0;python_version<"3.9"',
207203
'pluggy==1.6.0;python_version>="3.9"',
208-
'pytest==8.3.5',
204+
'pytest==8.3.5;python_version<"3.9"',
205+
'pytest==8.4.0;python_version>="3.9"',
209206
"pytest-html==4.0.2", # Newer ones had issues
210207
'pytest-metadata==3.1.1',
211208
"pytest-ordering==0.6",

0 commit comments

Comments
 (0)