From 1a794c46e2dd2678c618cfeea1faef0ba0ee664e Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Fri, 21 Oct 2022 02:26:43 +0200 Subject: [PATCH] Fix tests (#128) * don't publish wheel to test pypi from CI * we require clvm_tools 0.4.4 for the tests to pass now --- .github/workflows/publish-to-test-pypi.yml | 10 ++-------- setup.py | 2 +- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/publish-to-test-pypi.yml b/.github/workflows/publish-to-test-pypi.yml index c820935d..3bd9e592 100644 --- a/.github/workflows/publish-to-test-pypi.yml +++ b/.github/workflows/publish-to-test-pypi.yml @@ -1,6 +1,6 @@ # adapted from https://packaging.python.org/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/ -name: Publish Python distributions to PyPI and TestPyPI +name: Publish Python distributions to PyPI on: push: @@ -16,7 +16,7 @@ on: jobs: build-n-publish: - name: Build and publish Python distributions to PyPI and TestPyPI + name: Build and publish Python distributions to PyPI runs-on: ubuntu-18.04 steps: @@ -42,12 +42,6 @@ jobs: --binary --out-dir dist/ . - - name: Publish distribution to Test PyPI - uses: pypa/gh-action-pypi-publish@master - with: - skip_existing: true - password: ${{ secrets.test_pypi_password }} - repository_url: https://test.pypi.org/legacy/ - name: Publish distribution to PyPI if: startsWith(github.event.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@master diff --git a/setup.py b/setup.py index a1a86be7..c3428e42 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ ] dev_dependencies = [ - "clvm_tools>=0.4.2", + "clvm_tools>=0.4.4", "pytest", ]