Skip to content

Commit cf5641d

Browse files
committed
Cleaned up dependencies after dropping Python 3.8 support
Signed-off-by: Andreas Maier <andreas.r.maier@gmx.de>
1 parent 4fd3b5d commit cf5641d

File tree

2 files changed

+14
-27
lines changed

2 files changed

+14
-27
lines changed

dev-requirements.txt

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24,27 +24,21 @@ pytest-cov>=2.7.0
2424
coveralls>=3.3.0
2525

2626
# Safety CI by pyup.io
27-
safety>=3.6.1; python_version == '3.8'
28-
safety>=3.7.0; python_version >= '3.9'
29-
safety-schemas>=0.0.14; python_version == '3.8'
30-
safety-schemas>=0.0.16; python_version >= '3.9'
27+
safety>=3.7.0
28+
safety-schemas>=0.0.16
3129
dparse>=0.6.4
3230
ruamel.yaml>=0.17.21
3331
click>=8.0.2
3432
Authlib>=1.6.5
3533
marshmallow>=3.15.0
36-
pydantic>=2.8.0; python_version == '3.8'
37-
pydantic>=2.12.0; python_version >= '3.9'
38-
pydantic_core>=2.20.0; python_version == '3.8'
39-
pydantic_core>=2.41.1; python_version >= '3.9'
34+
pydantic>=2.12.0
35+
pydantic_core>=2.41.1
4036
# typer >=0.17.0 causes import issue for safety, see https://github.com/pyupio/safety/issues/778
4137
typer>=0.16.0
4238
typer-cli>=0.16.0
4339
typer-slim>=0.16.0
44-
# safety 3.4.0 depends on psutil~=6.1.0
45-
psutil~=6.1.0
46-
filelock>=3.16.1; python_version <= '3.9'
47-
filelock>=3.20.1; python_version >= '3.10'
40+
filelock==3.16.1; python_version == '3.9'
41+
filelock==3.20.1; python_version >= '3.10'
4842

4943
# PyYAML is pulled in by dparse
5044
# PyYAML is also pulled in by dparse and python-coveralls
@@ -104,8 +98,7 @@ readme-renderer>=43.0
10498
importlib-metadata>=4.8.3
10599

106100
# Mypy (no imports, invoked via mypy script)
107-
mypy>=1.14.1; python_version == '3.8'
108-
mypy>=1.17.1; python_version >= '3.9'
101+
mypy>=1.17.1
109102

110103
# Package dependency management tools
111104
pipdeptree>=2.24.0

minimum-constraints-develop.txt

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,24 +30,19 @@ pytest-cov==2.7.0
3030
coveralls==3.3.0
3131

3232
# Safety CI by pyup.io
33-
safety==3.6.1; python_version == '3.8'
34-
safety==3.7.0; python_version >= '3.9'
35-
safety-schemas==0.0.14; python_version == '3.8'
36-
safety-schemas==0.0.16; python_version >= '3.9'
33+
safety==3.7.0
34+
safety-schemas==0.0.16
3735
dparse==0.6.4
3836
ruamel.yaml==0.17.21
3937
click==8.0.2
4038
Authlib==1.6.5
4139
marshmallow==3.26.2
42-
pydantic==2.8.0; python_version == '3.8'
43-
pydantic==2.12.0; python_version >= '3.9'
44-
pydantic_core==2.20.0; python_version == '3.8'
45-
pydantic_core==2.41.1; python_version >= '3.9'
40+
pydantic==2.12.0
41+
pydantic_core==2.41.1
4642
typer==0.16.0
4743
typer-cli==0.16.0
4844
typer-slim==0.16.0
49-
psutil==6.1.0
50-
filelock==3.16.1; python_version <= '3.9'
45+
filelock==3.16.1; python_version == '3.9'
5146
filelock==3.20.1; python_version >= '3.10'
5247

5348
# PyYAML is pulled in by dparse
@@ -103,8 +98,7 @@ readme-renderer==43.0
10398
importlib-metadata==4.8.3
10499

105100
# Mypy (no imports, invoked via mypy script)
106-
mypy==1.14.1; python_version == '3.8'
107-
mypy==1.17.1; python_version >= '3.9'
101+
mypy==1.17.1
108102

109103
# Package dependency management tools
110104
pipdeptree==2.24.0
@@ -141,7 +135,7 @@ id==1.5.0
141135
# idna>3 requires using requests >=2.26.0
142136
idna==3.7
143137
imagesize==1.3.0
144-
# importlib-resources is used by jsonschema 4.17+ on py<=3.8, jsonschema-specifications 2023.12.1 on py<=3.8, jupyterlab 4.2.6 on py<=3.8, towncrier 23.6+ on py<=3.9
138+
# importlib-resources is used by towncrier 23.6+ on py<=3.9
145139
importlib-resources==5.6.0; python_version <= '3.9'
146140
Jinja2==3.1.6
147141
keyring==17.0.0

0 commit comments

Comments
 (0)