tag | 93ea71c56fb0202195651254e21e988a69bb4434 | |
---|---|---|
tagger | Marcus Christie <machristie@apache.org> | Tue Aug 09 11:53:33 2022 -0400 |
object | cf1213027e19d8dd5fe36f1476f219f6ff6a6b35 |
v1.4.1
commit | cf1213027e19d8dd5fe36f1476f219f6ff6a6b35 | [log] [tgz] |
---|---|---|
author | Marcus Christie <machristie@apache.org> | Tue Aug 09 11:53:12 2022 -0400 |
committer | Marcus Christie <machristie@apache.org> | Tue Aug 09 11:53:12 2022 -0400 |
tree | acaabbbbc2c789b8eb7c028334b110d7783745f0 | |
parent | da035d15f2d75bd3094fddefa1e0fa48bd34921a [diff] |
Bump to version 1.4.1
The Airavata Django Portal SDK provides libraries that assist in developing custom Django app extensions to the Airavata Django Portal.
See the documentation at https://airavata-django-portal-sdk.readthedocs.io/ for more details.
To integrate the SDK with an Airavata Django Portal custom app, add
airavata-django-portal-sdk
to the install_requires
list in your setup.cfg or setup.py file. Then reinstall the Django app with
pip install -e .
(see your Airavata Django custom app's README for details)
You can also just install the library with:
pip install airavata-django-portal-sdk
django-admin makemigrations --settings=tests.test_settings airavata_django_portal_sdk
To generate the documentation, create a virtual environment and then:
pip install -r requirements-dev.txt mkdocs serve
source venv/bin/activate pip install -r requirements-dev.txt
./runtests.py
flake8 .
autopep8 -i -aaa -r . isort .
Update the version in setup.py
Tag the repo with the same version, with the format v${version_number}
. For example, if the version number in setup.py is “1.2” then tag the repo with “v1.2”.
VERSION=... git tag -m $VERSION $VERSION git push --follow-tags
In a clean checkout
cd /tmp/ git clone /path/to/airavata-django-portal-sdk/ -b $VERSION cd airavata-django-portal-sdk python3 -m venv venv source venv/bin/activate python3 -m pip install --upgrade build python3 -m build
Push to pypi.org. Optionally can push to test.pypi.org. See https://packaging.python.org/tutorials/packaging-projects/ for more info.
python3 -m pip install --upgrade twine python3 -m twine upload dist/*