1
0

Bumped pipelines
Some checks failed
Test and Package Python / Test (push) Failing after 18s
Test and Package Python / Package (push) Failing after 18s

This commit is contained in:
Jon Michael Aanes 2024-05-27 22:00:06 +02:00
parent 5f14771b8b
commit 9c6409dc57
Signed by: Jmaa
SSH Key Fingerprint: SHA256:Ab0GfHGCblESJx7JRE4fj4bFy/KRpeLhi41y4pF3sNA
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
name: Python Package
name: Test and Package Python
on: [push]
jobs:

View File

@ -63,8 +63,8 @@ setup(
url='https://gitfub.space/Jmaa/' + PACKAGE_NAME,
packages=[PACKAGE_NAME],
install_requires=parse_requirements(REQUIREMENTS_MAIN),
extras_require=dict(
test=parse_requirements(REQUIREMENTS_TEST),
),
extras_require={
'test': parse_requirements(REQUIREMENTS_TEST),
},
python_requires='>=3.9',
)