1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
63b166ce2c 🤖 Bumped version to 0.1.1
Some checks failed
Build Python Container / Package-Container (push) Failing after 17s
Package Python / Package (push) Successful in 25s
Run Python tests (through Pytest) / Test (push) Failing after 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Failing after 23s
This commit was automatically generated by a script: https://gitfub.space/Jmaa/repo-manager
2025-02-28 10:45:38 +01:00
1844cdad5c 🤖 Repository layout updated to latest version
This commit was automatically generated by a script: https://gitfub.space/Jmaa/repo-manager
2025-01-23 13:46:01 +01:00
5 changed files with 27 additions and 4 deletions

View File

@ -0,0 +1,18 @@
name: Build Python Container
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
paths-ignore: ["README.md", ".gitignore", "LICENSE", "ruff.toml"]
jobs:
Package-Container:
uses: jmaa/workflows/.gitea/workflows/container.yaml@v6.21
with:
REGISTRY_DOMAIN: gitfub.space
REGISTRY_ORGANIZATION: jmaa
secrets:
DOCKER_USERNAME: ${{ secrets.PIPY_REPO_USER }}
DOCKER_PASSWORD: ${{ secrets.PIPY_REPO_PASS }}
PIPELINE_WORKER_SSH_KEY: ${{ secrets.PIPELINE_WORKER_SSH_KEY }}
PIPELINE_WORKER_KNOWN_HOSTS: ${{ secrets.PIPELINE_WORKER_KNOWN_HOSTS }}

View File

@ -1,3 +1,3 @@
Copyright (c) 2024 Jon Michael Aanes
Copyright (c) 2024-2025 Jon Michael Aanes
All rights reserved.

View File

@ -21,12 +21,14 @@ pip install -r requirements.txt
```
Full list of requirements:
- [requests](https://pypi.org/project/requests/)
- [secret_loader](https://gitfub.space/Jmaa/secret_loader)
## License
```
Copyright (c) 2024 Jon Michael Aanes
Copyright (c) 2024-2025 Jon Michael Aanes
All rights reserved.
```

View File

@ -1 +1 @@
__version__ = '0.1.0'
__version__ = '0.1.1'

View File

@ -32,7 +32,10 @@ with open(PACKAGE_NAME + '/_version.py') as f:
version = parse_version_file(f.read())
REQUIREMENTS_MAIN = []
REQUIREMENTS_MAIN = [
'requests',
'secret_loader @ git+https://gitfub.space/Jmaa/secret_loader.git',
]
REQUIREMENTS_TEST = []