Skip to content

Commit 0606bc4

Browse files
committed
Refresh Python dependencies
1 parent a2e8bb7 commit 0606bc4

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
pip>=24.2
2-
packaging>=24.1
2+
packaging>=24.2
33
setuptools~=70.2;python_version<"3.10"
44
setuptools>=73.0.1;python_version>="3.10"
5-
wheel>=0.44.0
5+
wheel>=0.45.0
66
attrs>=24.2.0
77
certifi>=2024.8.30
88
exceptiongroup>=1.2.2
9-
websockets>=13.1
9+
websockets~=13.1;python_version<"3.9"
10+
websockets>=14.0;python_version>="3.9"
1011
filelock>=3.16.1
1112
fasteners>=0.19
1213
mycdp>=1.0.1

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,14 +148,15 @@
148148
python_requires=">=3.8",
149149
install_requires=[
150150
'pip>=24.2',
151-
'packaging>=24.1',
151+
'packaging>=24.2',
152152
'setuptools~=70.2;python_version<"3.10"', # Newer ones had issues
153153
'setuptools>=73.0.1;python_version>="3.10"',
154-
'wheel>=0.44.0',
154+
'wheel>=0.45.0',
155155
'attrs>=24.2.0',
156156
"certifi>=2024.8.30",
157157
"exceptiongroup>=1.2.2",
158-
"websockets>=13.1",
158+
'websockets~=13.1;python_version<"3.9"',
159+
'websockets>=14.0;python_version>="3.9"',
159160
'filelock>=3.16.1',
160161
'fasteners>=0.19',
161162
"mycdp>=1.0.1",

0 commit comments

Comments
 (0)