diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index c66c701..10fca63 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -4,7 +4,7 @@ name: Upload Python Package on: - workflow_dispatch: + release: types: [created] diff --git a/docs/source/contributing/how_to.rst b/docs/source/contributing/how_to.rst index 68e2932..75107cc 100644 --- a/docs/source/contributing/how_to.rst +++ b/docs/source/contributing/how_to.rst @@ -11,6 +11,10 @@ Please report any issues on GitHub at https://github.com/ecmwf/aviso/issues Below a few steps to guide the development: +* Clone Aviso repository:: + + git clone https://github.com/ecmwf/aviso.git + * Install Aviso following :ref:`getting_started` and then install development dependencies:: pip install -U -r tests/requirements-dev.txt diff --git a/pyaviso/version.py b/pyaviso/version.py index 41f2ebe..5f3d6f6 100644 --- a/pyaviso/version.py +++ b/pyaviso/version.py @@ -1,2 +1,2 @@ # version number for the application -__version__ = '0.9.1' +__version__ = '0.9.2' diff --git a/setup.py b/setup.py index ae0a1a8..da740b8 100644 --- a/setup.py +++ b/setup.py @@ -27,9 +27,9 @@ author_email="software.support@ecmwf.int", license="Apache 2.0", url='https://github.com/ecmwf/aviso', - description='Aviso is a notification application allowing users to send and receive custom events and to trigger ' - 'users workflows', + description="Time-critical notification system designed to trigger users' workflows across HPC and Cloud systems", long_description=long_description, + long_description_content_type="text/markdown", version=__version__, packages=find_packages(exclude=("tests", "aviso-server")), include_package_data=True,