From 4464f81ec8baa0bf53147b3996a117a8980af43e Mon Sep 17 00:00:00 2001 From: Scott Gigante Date: Thu, 4 Feb 2021 09:30:59 -0500 Subject: [PATCH 1/3] bump version --- Python/phate/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/phate/version.py b/Python/phate/version.py index 382021f..ae81e91 100644 --- a/Python/phate/version.py +++ b/Python/phate/version.py @@ -1 +1 @@ -__version__ = "1.0.6" +__version__ = "1.0.7a0" From 96c24a1cbf828be6ebbdf408b75edaa6e7e190f5 Mon Sep 17 00:00:00 2001 From: Scott Gigante Date: Thu, 4 Feb 2021 09:37:14 -0500 Subject: [PATCH 2/3] fix deploy --- .github/workflows/deploy.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6fd3773..c2069af 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -25,10 +25,13 @@ jobs: run: | cd Python python -m pip install build --user + cd .. - name: Build a binary wheel and a source tarball run: | - python -m build --sdist --wheel --outdir dist/ . + cd Python + python -m build --sdist --wheel --outdir ../dist/ . + cd .. - name: Publish distribution 📦 to Test PyPI uses: pypa/gh-action-pypi-publish@master @@ -41,4 +44,5 @@ jobs: if: startsWith(github.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@master with: + skip_existing: true password: ${{ secrets.pypi_password }} From 356ff02271ba29cd89d596c024bceac8d5642dba Mon Sep 17 00:00:00 2001 From: Scott Gigante Date: Thu, 4 Feb 2021 09:37:38 -0500 Subject: [PATCH 3/3] Revert "bump version" This reverts commit 4464f81ec8baa0bf53147b3996a117a8980af43e. --- Python/phate/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/phate/version.py b/Python/phate/version.py index ae81e91..382021f 100644 --- a/Python/phate/version.py +++ b/Python/phate/version.py @@ -1 +1 @@ -__version__ = "1.0.7a0" +__version__ = "1.0.6"