diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index d4c48d8..449bced 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -49,45 +49,6 @@ jobs: - name: publish-dist-to-pypi uses: pypa/gh-action-pypi-publish@release/v1 - github-release: - name: >- - sign-dist-via-sigstore-and-upload-to-github-release - needs: - - publish-to-pypi - runs-on: ubuntu-latest - - permissions: - contents: write - id-token: write - - steps: - - name: download-dists - uses: actions/download-artifact@v4 - with: - name: pkg-dist - path: dist/ - - name: sign-dists - uses: sigstore/gh-action-sigstore-python@v3.0.0 - with: - inputs: >- - ./dist/*.tar.gz - ./dist/*.whl - - name: create-github-release - env: - GITHUB_TOKEN: ${{ github.token }} - run: >- - gh release create - '${{ github.ref_name }}' - --repo '${{ github.repository }}' - --notes "" - - name: upload-artifact-signature-to-github-release - env: - GITHUB_TOKEN: ${{ github.token }} - run: >- - gh release upload - '${{ github.ref_name }}' dist/** - --repo '${{ github.repository }}' - publish-to-test-pypi: name: publish-to-test-pypi if: startsWith(github.ref, 'refs/heads/development') diff --git a/pyproject.toml b/pyproject.toml index b40968e..9799b11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "empiarreader" -version = "0.0.15" +version = "0.0.16" description = "EMPIARReader provides utilities to lazily load data from EMPIAR into a machine-learning-friendly dataset format or to locally download the files." readme = "README.md" requires-python = ">=3.8"