From 125864f26e49c51a350b6864812f72ef08b6133a Mon Sep 17 00:00:00 2001 From: Tab Memmott Date: Mon, 30 Dec 2024 11:08:17 -0800 Subject: [PATCH] increment version and add test pypi workflow --- .github/workflows/main.yml | 10 +- .github/workflows/publish_to_test_pypi.yml | 124 +++++++++++++++++++++ setup.py | 2 +- 3 files changed, 130 insertions(+), 6 deletions(-) create mode 100644 .github/workflows/publish_to_test_pypi.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ddcd9d3a..52d6519d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,9 +21,9 @@ jobs: python-version: [3.8, 3.9, 3.10.6] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Update OS, pip & install custom dependencies @@ -72,9 +72,9 @@ jobs: python-version: [3.8, 3.9, 3.10.6] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v5 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: update pip & install custom dependencies @@ -112,7 +112,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: update pip & install custom dependencies diff --git a/.github/workflows/publish_to_test_pypi.yml b/.github/workflows/publish_to_test_pypi.yml new file mode 100644 index 00000000..db3d9559 --- /dev/null +++ b/.github/workflows/publish_to_test_pypi.yml @@ -0,0 +1,124 @@ +name: Publish Python 🐍 distribution 📦 to PyPI and TestPyPI + +on: + pull_request: + branches: + - '**' + +jobs: + build: + name: Build distribution 📦 + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + with: + persist-credentials: false + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.9" + - name: update pip & install custom dependencies + run: | + sh scripts/shell/m2chip_install.sh + brew install labstreaminglayer/tap/lsl + python -m pip install --upgrade pip + - name: install dependencies + run: | + make dev-install + - name: Build a binary wheel and a source tarball + run: make build + - name: Store the distribution packages + uses: actions/upload-artifact@v4 + with: + name: python-package-distributions + path: dist/ + + # publish-to-pypi: + # name: >- + # Publish Python 🐍 distribution 📦 to PyPI + # if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes + # needs: + # - build + # runs-on: ubuntu-latest + # environment: + # name: pypi + # url: https://pypi.org/p/ # Replace with your PyPI project name + # permissions: + # id-token: write # IMPORTANT: mandatory for trusted publishing + + # steps: + # - name: Download all the dists + # uses: actions/download-artifact@v4 + # with: + # name: python-package-distributions + # path: dist/ + # - name: Publish distribution 📦 to PyPI + # uses: pypa/gh-action-pypi-publish@release/v1 + + # github-release: + # name: >- + # Sign the Python 🐍 distribution 📦 with Sigstore + # and upload them to GitHub Release + # needs: + # - publish-to-pypi + # runs-on: ubuntu-latest + + # permissions: + # contents: write # IMPORTANT: mandatory for making GitHub Releases + # id-token: write # IMPORTANT: mandatory for sigstore + + # steps: + # - name: Download all the dists + # uses: actions/download-artifact@v4 + # with: + # name: python-package-distributions + # path: dist/ + # - name: Sign the dists with Sigstore + # 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 signatures to GitHub Release + # env: + # GITHUB_TOKEN: ${{ github.token }} + # # Upload to GitHub Release using the `gh` CLI. + # # `dist/` contains the built packages, and the + # # sigstore-produced signatures and certificates. + # run: >- + # gh release upload + # "$GITHUB_REF_NAME" dist/** + # --repo "$GITHUB_REPOSITORY" + + publish-to-testpypi: + name: Publish Python 🐍 distribution 📦 to TestPyPI + needs: + - build + runs-on: macos-latest + + environment: + name: testpypi + url: https://test.pypi.org/p/bcipy + + permissions: + id-token: write # IMPORTANT: mandatory for trusted publishing + + steps: + - name: Download all the dists + uses: actions/download-artifact@v4 + with: + name: python-package-distributions + path: dist/ + - name: Publish distribution 📦 to TestPyPI + uses: pypa/gh-action-pypi-publish@release/v1 + with: + repository-url: https://test.pypi.org/legacy/ \ No newline at end of file diff --git a/setup.py b/setup.py index 167bacdb..33cddd58 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ AUTHOR = 'CAMBI' REQUIRES_PYTHON = '>3.7,<3.11' -VERSION = '2.0.0rc4' +VERSION = '2.0.1rc4' REQUIRED = []