Skip to content

Commit

Permalink
Update publish.yml
Browse files Browse the repository at this point in the history
Python 3.10 was [being recognized](actions/setup-python#160 (comment)) as 3.1 due to semver. Added strings to avoid this issue to fix pypi distribution.
  • Loading branch information
sergiocorreia authored Jul 14, 2022
1 parent a8a9387 commit 1f3bbb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.10
python-version: '3.10'

- name: Install dependencies
run: |
Expand Down

0 comments on commit 1f3bbb3

Please sign in to comment.