From 2328a7babc4d87882795e417be8ba8e3763edfdf Mon Sep 17 00:00:00 2001 From: Marten Chaillet <58044494+McHaillet@users.noreply.github.com> Date: Mon, 11 Nov 2024 16:01:44 +0100 Subject: [PATCH] fix action to v1.11 (#239) * fix pypa action to v1.11 * Update pyproject.toml --- .github/workflows/do-release.yml | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/do-release.yml b/.github/workflows/do-release.yml index 0be8f37..3d13d93 100644 --- a/.github/workflows/do-release.yml +++ b/.github/workflows/do-release.yml @@ -27,7 +27,7 @@ jobs: run: | python -m twine check dist/* - name: Publish package distributions to TestPyPI - uses: pypa/gh-action-pypi-publish@release/v1.12 + uses: pypa/gh-action-pypi-publish@release/v1.11 # temporary workaround for issue #236 with: repository-url: https://test.pypi.org/legacy/ - name: Download conda dependencies @@ -40,4 +40,4 @@ jobs: run: | python -m unittest discover tests/ - name: Publish package distributions to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 + uses: pypa/gh-action-pypi-publish@release/v1.11 # temporary workaround for issue #236 diff --git a/pyproject.toml b/pyproject.toml index 777a7db..5d03e63 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pytom-match-pick" -version = "0.7.6" +version = "0.7.7" description = "PyTOM's GPU template matching module as an independent package" readme = "README.md" license = {file = "LICENSE"}