Skip to content

Commit

Permalink
Wrap version strings in quotes to avoid parse errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nocarryr committed May 8, 2023
1 parent 164f3b2 commit bc2332e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dist-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.8, 3.9, 3.10, 3.11]
python-version: ["2.7", "3.8", "3.9", "3.10", "3.11"]
dist-type: [sdist, wheel]
fail-fast: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.8, 3.9, 3.10, 3.11]
python-version: ["2.7", "3.8", "3.9", "3.10", "3.11"]
fail-fast: false

steps:
Expand Down

0 comments on commit bc2332e

Please sign in to comment.