acederberg / pydantic-settings-yaml

A convenient tool for loading pydantic settings from either YAML and JSON.
MIT License
5 stars 3 forks source link

Pipelines for Testing, Linting, and Uploading to PyPI #5

Closed acederberg closed 1 year ago

acederberg commented 1 year ago

Doing this manually is a pain and not very consistent. Rouly the following works for publishing:

python -m pip install build twine bumpver
python -m bumpver update --minor
python -m build
python -m twine upload ./dist
acederberg commented 1 year ago

See #6 and #7