1
0

Bumped pipelines
Some checks failed
Test and Package Python / Test (push) Successful in 19s
Test and Package Python / Package (push) Failing after 22s

This commit is contained in:
Jon Michael Aanes 2024-05-27 21:55:47 +02:00
parent 963df68f02
commit 6143e6104b
Signed by: Jmaa
SSH Key Fingerprint: SHA256:Ab0GfHGCblESJx7JRE4fj4bFy/KRpeLhi41y4pF3sNA
4 changed files with 26 additions and 16 deletions

View File

@ -1,4 +1,4 @@
name: Python Package name: Test and Package Python
on: [push] on: [push]
jobs: jobs:
@ -8,7 +8,7 @@ jobs:
uses: jmaa/workflows/.gitea/workflows/python-package.yaml@v6.21 uses: jmaa/workflows/.gitea/workflows/python-package.yaml@v6.21
with: with:
REGISTRY_DOMAIN: gitfub.space REGISTRY_DOMAIN: gitfub.space
REGISTRY_ORGANIZATION: Jmaa REGISTRY_ORGANIZATION: jmaa
secrets: secrets:
PIPY_REPO_USER: ${{ secrets.PIPY_REPO_USER }} PIPY_REPO_USER: ${{ secrets.PIPY_REPO_USER }}
PIPY_REPO_PASS: ${{ secrets.PIPY_REPO_PASS }} PIPY_REPO_PASS: ${{ secrets.PIPY_REPO_PASS }}

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
enforce_typing
frozendict

1
requirements_test.txt Normal file
View File

@ -0,0 +1 @@
pytest

View File

@ -1,15 +1,21 @@
#!/usr/bin/env python #!/usr/bin/env python
#
# WARNING
#
# THIS IS AN AUTOGENERATED FILE.
#
# MANUAL CHANGES CAN AND WILL BE OVERWRITTEN.
import re import re
import pathlib
from setuptools import setup from setuptools import setup
PACKAGE_NAME = "pbcabi" PACKAGE_NAME = 'pbcabi'
with open("README.md") as f: with open('README.md') as f:
readme = f.read() readme = f.read()
with open(PACKAGE_NAME + "/_version.py") as f: with open(PACKAGE_NAME + '/_version.py') as f:
text = f.read() text = f.read()
match = re.match(r'^__version__\s*=\s*(["\'])([\d\.]+)\1$', text) match = re.match(r'^__version__\s*=\s*(["\'])([\d\.]+)\1$', text)
version = match.group(2) version = match.group(2)
@ -17,7 +23,7 @@ with open(PACKAGE_NAME + "/_version.py") as f:
def parse_requirements(text: str) -> list[str]: def parse_requirements(text: str) -> list[str]:
return text.strip().split("\n") return text.strip().split('\n')
def read_requirements(path: str): def read_requirements(path: str):
@ -26,12 +32,12 @@ def read_requirements(path: str):
def get_short_description(readme: str): def get_short_description(readme: str):
readme = re.sub(r"#+[^\n]*\n+", "", readme) readme = re.sub(r'#+[^\n]*\n+', '', readme)
m = re.search(r"^\s*(\w+[\w\s,`]+\.)", readme) m = re.search(r'^\s*(\w+[\w\s,`-]+\.)', readme)
try: try:
return m.group(1) return m.group(1)
except AttributeError as err: except AttributeError as err:
msg = "Could not determine short description" msg = 'Could not determine short description'
raise Exception(msg) from err raise Exception(msg) from err
@ -44,19 +50,20 @@ REQUIREMENTS_TEST = """
pytest pytest
""" """
setup( setup(
name=PACKAGE_NAME, name=PACKAGE_NAME,
version=version, version=version,
description=get_short_description(readme), description=get_short_description(readme),
long_description=readme, long_description=readme,
long_description_content_type="text/markdown", long_description_content_type='text/markdown',
author="Jmaa", author='Jmaa',
author_email="jonjmaa@gmail.com", author_email='jonjmaa@gmail.com',
url="https://gitfub.space/Jmaa/" + PACKAGE_NAME, url='https://gitfub.space/Jmaa/' + PACKAGE_NAME,
packages=[PACKAGE_NAME], packages=[PACKAGE_NAME],
install_requires=parse_requirements(REQUIREMENTS_MAIN), install_requires=parse_requirements(REQUIREMENTS_MAIN),
extras_require={ extras_require={
"test": parse_requirements(REQUIREMENTS_TEST), 'test': parse_requirements(REQUIREMENTS_TEST),
}, },
python_requires=">=3.9", python_requires='>=3.9',
) )