[ci] bump python version to 0.9.10 to use latest package #17
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build+Upload Windows Python Wheels | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build_windows_wheels: | |
| name: Build Windows wheels | |
| runs-on: windows-2022 | |
| defaults: | |
| run: | |
| shell: bash | |
| strategy: | |
| matrix: | |
| python_version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14'] | |
| outputs: | |
| perform_pypi_upload: ${{ steps.perform_pypi_upload_check.outputs.perform_pypi_upload }} | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: 'recursive' | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python_version }} | |
| - name: Build wheel | |
| run: | | |
| cd python/ | |
| pip install build setuptools wheel | |
| python -m build --wheel | |
| ls dist/ | |
| - name: Run unit tests | |
| run: | | |
| cd python/ | |
| pip install dist/*.whl | |
| python -m unittest discover -s tests -v | |
| - name: Check If the Build Version Exists on PyPI | |
| id: perform_pypi_upload_check | |
| run: | | |
| bash $GITHUB_WORKSPACE/.github/check-pypi-upload.sh | |
| - name: Prepare Wheels for Upload | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: windows-wheels-${{ matrix.python_version }} | |
| path: python/dist/ | |
| upload_windows_wheels: | |
| needs: build_windows_wheels | |
| runs-on: ubuntu-latest | |
| if: ${{ github.repository_owner == 'NeuroJSON' && needs.build_windows_wheels.outputs.perform_pypi_upload == 1 && github.event_name != 'pull_request'}} | |
| permissions: | |
| id-token: write | |
| steps: | |
| - name: Download Wheels from Build Job | |
| uses: actions/download-artifact@v4 | |
| with: | |
| pattern: windows-wheels-* | |
| merge-multiple: true | |
| path: dist/ | |
| - name: Upload packages to PyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| password: ${{ secrets.PYPI_API_TOKEN }} | |
| verify_metadata: false | |
| verbose: true | |
| skip_existing: true |