ADS Pipeline Utils


License
MIT
Install
pip install adsputils==1.5.2

Documentation

Python CI actions Coverage Status

ADSPipelineUtils

Set of common libraries used by the celery workers.

Releasing new version to pypi

When a new release is ready, it should be uploaded to pypi. First, try the test environment:

python3 -m venv ./venv
source venv/bin/activate
pip install --upgrade setuptools wheel
rm -rf dist/
python3 setup.py sdist
python3 setup.py bdist_wheel --universal
pip install --upgrade twine
twine upload --repository-url https://test.pypi.org/legacy/ dist/*

Verify the testing pypi repository and if everything looks good, you can proceed to upload to the official repository:

twine upload dist/*