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 committed by Steffen Vogel
parent b4fcd0c566
commit 0be29ffcab

View file

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