1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-30 00:00:11 +01:00

python: Pin dependencies

Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com>
This commit is contained in:
Steffen Vogel 2024-02-13 13:14:39 +00:00
parent 254aea19a9
commit 62120b9a68

View file

@ -20,13 +20,16 @@ classifiers = [
'Operating System :: POSIX :: Linux', 'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
] ]
dependencies = ['linuxfd', 'requests'] dependencies = [
'linuxfd==1.5',
'requests==2.31.0',
]
optional-dependencies.dev = [ optional-dependencies.dev = [
'black', 'black==24.2.0',
'flake8', 'flake8==7.0.0',
'mypy', 'mypy==1.8.0',
'pytest', 'pytest==8.0.0',
'types-requests', 'types-requests==2.31.0.20240125',
] ]
[project.urls] [project.urls]