Skip to content

Commit

Permalink
specify python version explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
BWMac committed Dec 16, 2024
1 parent f28acce commit aaaff56
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@ on:
jobs:
build:
runs-on: ubuntu-latest
env:
PYTHON_VERSION: "3.10"
outputs:
sdist-package-name: ${{ steps.build-package.outputs.sdist-package-name }}
bdist-package-name: ${{ steps.build-package.outputs.bdist-package-name }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: ${{ env.PYTHON_VERSION }}
- id: build-package
run: |
python3 -m pip install --upgrade pip
Expand Down

0 comments on commit aaaff56

Please sign in to comment.