diff --git a/.github/workflows/release.yml b/.github/workflows/publish-pypi.yml similarity index 93% rename from .github/workflows/release.yml rename to .github/workflows/publish-pypi.yml index 838efe6..b23a441 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/publish-pypi.yml @@ -5,7 +5,10 @@ name: PyPI upload -on: [workflow_dispatch] +on: + release: + types: [created] + workflow_dispatch: jobs: publish_pypi: diff --git a/.github/workflows/ci.yml b/.github/workflows/testing.yml similarity index 100% rename from .github/workflows/ci.yml rename to .github/workflows/testing.yml diff --git a/maria/_version.py b/maria/_version.py index 66dec75..570e408 100644 --- a/maria/_version.py +++ b/maria/_version.py @@ -13,5 +13,5 @@ __version_tuple__: VERSION_TUPLE version_tuple: VERSION_TUPLE -__version__ = version = "0.9.8.dev0+gd5e3c5d.d20240216" -__version_tuple__ = version_tuple = (0, 9, 8, "dev0", "gd5e3c5d.d20240216") +__version__ = version = "0.9.8.dev32" +__version_tuple__ = version_tuple = (0, 9, 8, "dev32") diff --git a/pyproject.toml b/pyproject.toml index 336ef3b..0d15243 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,6 +16,7 @@ dependencies = [ "matplotlib", "numpy", "pandas", + "pytz", "reproject", "requests", "scipy",