1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
b018a32f20 🤖 Bumped version to 0.3.11
Some checks failed
Package Python / Package (push) Successful in 24s
Test Python / Test (push) Failing after 23s
This commit was automatically generated by a script: https://gitfub.space/Jmaa/repo-manager
2024-09-27 00:07:05 +02:00
742ca9f23f 🤖 Repository layout updated to latest version
This commit was automatically generated by a script: https://gitfub.space/Jmaa/repo-manager
2024-09-27 00:01:31 +02:00
3 changed files with 14 additions and 4 deletions

View File

@ -22,7 +22,18 @@ Please ignore the `/tests` folder. It is very old, and unsupported,
but kept for archival purposes. but kept for archival purposes.
# License ## Dependencies
All requirements can be installed easily using:
```bash
pip install -r requirements.txt
```
Full list of requirements:
## License
``` ```
MIT License MIT License

View File

@ -1 +1 @@
__version__ = '0.3.10' __version__ = '0.3.11'

View File

@ -45,8 +45,7 @@ with open(PACKAGE_NAME + '/_version.py') as f:
version = parse_version_file(f.read()) version = parse_version_file(f.read())
REQUIREMENTS_MAIN = [ REQUIREMENTS_MAIN = []
]
REQUIREMENTS_TEST = [ REQUIREMENTS_TEST = [
'pytest', 'pytest',
] ]