Skip to content

Commit

Permalink
Python version in deploy script needs to be a string
Browse files Browse the repository at this point in the history
If considered a decimal it slices off the zero, so 3.10 becomes 3.1.
  • Loading branch information
chemix-lunacy committed Aug 5, 2024
1 parent b95cac5 commit 830f192
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: 3.10
python-version: "3.10"
if: ${{ matrix.os != 'macos-14' && matrix.os != 'macos-latest' }}
- name: Install LLVM
uses: ./.github/actions/install-llvm
Expand Down

0 comments on commit 830f192

Please sign in to comment.