From 838d1695cdf357f647ffc10138779c4d85d40c5b Mon Sep 17 00:00:00 2001 From: "S. VenkataKeerthy" <31350914+svkeerthy@users.noreply.github.com> Date: Wed, 11 Oct 2023 22:30:56 +0530 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f259fe60..29f1af56 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ If you're a C++ developer and require low-level control, optimization, or integr * For running experiments are available in [experiments/exp_requirements.yaml](./experiments/exp_requirements.yaml) * Conda/Anaconda based virtual environment is assumed -(Experiments are done on an Ubuntu 18.04 machine) +(Experiments are done on an Ubuntu 20.04 machine) ## Building from source From fa200d2fcd990c68f295ecb271ce5b724c2b1cb5 Mon Sep 17 00:00:00 2001 From: "S. VenkataKeerthy" <31350914+svkeerthy@users.noreply.github.com> Date: Thu, 12 Oct 2023 12:49:48 +0530 Subject: [PATCH 2/3] Update upload-pypi.yml --- .github/workflows/upload-pypi.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/upload-pypi.yml b/.github/workflows/upload-pypi.yml index f4efaecd..bd5de9fa 100644 --- a/.github/workflows/upload-pypi.yml +++ b/.github/workflows/upload-pypi.yml @@ -8,7 +8,7 @@ on: inputs: pypi_repo: description: 'Repo to upload to (testpypi or pypi)' - default: 'testpypi' + default: 'pypi' required: true type: choice options: @@ -48,11 +48,11 @@ jobs: name: artifact path: dist - - name: Publish package to TestPyPI - uses: pypa/gh-action-pypi-publish@v1.8.5 - with: - repository-url: https://test.pypi.org/legacy/ - if: ${{ github.event.inputs.pypi_repo != 'pypi' }} + # - name: Publish package to TestPyPI + # uses: pypa/gh-action-pypi-publish@v1.8.5 + # with: + # repository-url: https://test.pypi.org/legacy/ + # if: ${{ github.event.inputs.pypi_repo != 'pypi' }} - name: Publish package to PyPI uses: pypa/gh-action-pypi-publish@v1.8.5 From 9abc1d08bbb77d740401e755ad9011145d808e80 Mon Sep 17 00:00:00 2001 From: "S. VenkataKeerthy" <31350914+svkeerthy@users.noreply.github.com> Date: Thu, 12 Oct 2023 22:38:26 +0530 Subject: [PATCH 3/3] Update upload-pypi.yml --- .github/workflows/upload-pypi.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/upload-pypi.yml b/.github/workflows/upload-pypi.yml index bd5de9fa..e213a497 100644 --- a/.github/workflows/upload-pypi.yml +++ b/.github/workflows/upload-pypi.yml @@ -48,12 +48,14 @@ jobs: name: artifact path: dist - # - name: Publish package to TestPyPI - # uses: pypa/gh-action-pypi-publish@v1.8.5 - # with: - # repository-url: https://test.pypi.org/legacy/ - # if: ${{ github.event.inputs.pypi_repo != 'pypi' }} + - name: Publish package to TestPyPI + uses: pypa/gh-action-pypi-publish@v1.8.5 + with: + repository-url: https://test.pypi.org/legacy/ + if: ${{ github.event.inputs.pypi_repo != 'pypi' }} - name: Publish package to PyPI uses: pypa/gh-action-pypi-publish@v1.8.5 + with: + repository-url: https://upload.pypi.org/legacy/ if: ${{ github.event.inputs.pypi_repo == 'pypi' }}