Skip to content

Commit ccbc0a2

Browse files
committed
Refresh Python dependencies
1 parent 6a043d8 commit ccbc0a2

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

requirements.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ filelock~=3.16.1;python_version<"3.9"
1313
filelock>=3.19.1;python_version>="3.9"
1414
fasteners>=0.20
1515
mycdp>=1.2.0
16-
pynose>=1.5.4
16+
pynose>=1.5.5
1717
platformdirs>=4.3.6;python_version<"3.9"
1818
platformdirs>=4.4.0;python_version>="3.9"
1919
typing-extensions>=4.13.2
@@ -36,15 +36,15 @@ charset-normalizer>=3.4.3,<4
3636
urllib3>=1.26.20,<2;python_version<"3.10"
3737
urllib3>=1.26.20,<2.6.0;python_version>="3.10"
3838
requests==2.32.4;python_version<"3.9"
39-
requests>=2.32.5,<2.33;python_version>="3.9"
39+
requests~=2.32.5;python_version>="3.9"
4040
sniffio==1.3.1
4141
h11==0.16.0
4242
outcome==1.3.0.post0
4343
trio==0.27.0;python_version<"3.9"
44-
trio==0.30.0;python_version>="3.9"
45-
trio-websocket==0.12.2
44+
trio~=0.30.0;python_version>="3.9"
45+
trio-websocket~=0.12.2
4646
wsproto==1.2.0
47-
websocket-client==1.8.0
47+
websocket-client~=1.8.0
4848
selenium==4.27.1;python_version<"3.9"
4949
selenium==4.32.0;python_version>="3.9" and python_version<"3.10"
5050
selenium==4.35.0;python_version>="3.10"
@@ -82,7 +82,7 @@ rich>=14.1.0,<15
8282
coverage>=7.6.1;python_version<"3.9"
8383
coverage>=7.10.6;python_version>="3.9"
8484
pytest-cov>=5.0.0;python_version<"3.9"
85-
pytest-cov>=6.3.0;python_version>="3.9"
85+
pytest-cov>=7.0.0;python_version>="3.9"
8686
flake8==5.0.4;python_version<"3.9"
8787
flake8==7.3.0;python_version>="3.9"
8888
mccabe==0.7.0

setup.py

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@
161161
'filelock>=3.19.1;python_version>="3.9"',
162162
'fasteners>=0.20',
163163
"mycdp>=1.2.0",
164-
"pynose>=1.5.4",
164+
"pynose>=1.5.5",
165165
'platformdirs>=4.3.6;python_version<"3.9"',
166166
'platformdirs>=4.4.0;python_version>="3.9"',
167167
'typing-extensions>=4.13.2',
@@ -184,15 +184,15 @@
184184
'urllib3>=1.26.20,<2;python_version<"3.10"',
185185
'urllib3>=1.26.20,<2.6.0;python_version>="3.10"',
186186
'requests==2.32.4;python_version<"3.9"',
187-
'requests>=2.32.5,<2.33;python_version>="3.9"',
187+
'requests~=2.32.5;python_version>="3.9"',
188188
'sniffio==1.3.1',
189189
'h11==0.16.0',
190190
'outcome==1.3.0.post0',
191191
'trio==0.27.0;python_version<"3.9"',
192-
'trio==0.30.0;python_version>="3.9"',
193-
'trio-websocket==0.12.2',
192+
'trio~=0.30.0;python_version>="3.9"',
193+
'trio-websocket~=0.12.2',
194194
'wsproto==1.2.0',
195-
'websocket-client==1.8.0',
195+
'websocket-client~=1.8.0',
196196
'selenium==4.27.1;python_version<"3.9"',
197197
'selenium==4.32.0;python_version>="3.9" and python_version<"3.10"',
198198
'selenium==4.35.0;python_version>="3.10"',
@@ -239,7 +239,7 @@
239239
'coverage>=7.6.1;python_version<"3.9"',
240240
'coverage>=7.10.6;python_version>="3.9"',
241241
'pytest-cov>=5.0.0;python_version<"3.9"',
242-
'pytest-cov>=6.3.0;python_version>="3.9"',
242+
'pytest-cov>=7.0.0;python_version>="3.9"',
243243
],
244244
# pip install -e .[flake8]
245245
# Usage: flake8
@@ -271,8 +271,10 @@
271271
'pdfminer.six==20250506;python_version>="3.9"',
272272
'cryptography==39.0.2;python_version<"3.9"',
273273
'cryptography==45.0.7;python_version>="3.9"',
274-
'cffi==1.17.1',
275-
"pycparser==2.22",
274+
'cffi==1.17.1;python_version<"3.9"',
275+
'cffi==2.0.0;python_version>="3.9"',
276+
'pycparser==2.22;python_version<"3.9"',
277+
'pycparser==2.23;python_version>="3.9"',
276278
],
277279
# pip install -e .[pillow]
278280
# (An optional library for image-processing.)

0 commit comments

Comments
 (0)