Skip to content

Commit

Permalink
Devops: Fix the CD workflow
Browse files Browse the repository at this point in the history
The Python version needs to be a string because without quotes 3.10 is
interpreted as a float and converted to 3.1.
  • Loading branch information
sphuber committed May 30, 2024
1 parent 5c2b444 commit 8f7610f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish-on-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.10
python-version: '3.10'

- name: Upgrade setuptools and install package
run: |
Expand Down

0 comments on commit 8f7610f

Please sign in to comment.