From 4624b6ee62744ca391d05d29c1f4bee1f7e1e941 Mon Sep 17 00:00:00 2001 From: Vibhu Agarwal Date: Wed, 4 Mar 2020 19:31:12 +0530 Subject: [PATCH 1/2] Update python-publish.yml --- ci/python-publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/python-publish.yml b/ci/python-publish.yml index d5f3859..a7438ff 100644 --- a/ci/python-publish.yml +++ b/ci/python-publish.yml @@ -22,6 +22,7 @@ jobs: run: | python -m pip install --upgrade pip pip install setuptools wheel twine + pip install -r requirements.txt - name: Build and publish env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} From 9b42288206b387b1b6d78ae4156efbde99bdf882 Mon Sep 17 00:00:00 2001 From: Vibhu Agarwal Date: Tue, 26 May 2020 17:52:59 +0530 Subject: [PATCH 2/2] Update python-publish.yml --- ci/python-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/python-publish.yml b/ci/python-publish.yml index a7438ff..736fae8 100644 --- a/ci/python-publish.yml +++ b/ci/python-publish.yml @@ -22,7 +22,7 @@ jobs: run: | python -m pip install --upgrade pip pip install setuptools wheel twine - pip install -r requirements.txt + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Build and publish env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}