Skip to content

Commit

Permalink
Add quotes around python versions
Browse files Browse the repository at this point in the history
Yes, this is needed, please see https://dev.to/hugovk/the-python-3-1-problem-85g.

Signed-off-by: Eduardo Apolinario <[email protected]>
  • Loading branch information
eapolinario committed Oct 8, 2021
1 parent bd6d694 commit 4d619d5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pythonbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, 3.10]
python-version: ["3.7", "3.8", "3.9", "3.10"]
spark-version-suffix: ["", "-spark2"]
exclude:
- python-version: 3.8
- python-version: "3.8"
spark-version-suffix: "-spark2"
- python-version: 3.9
- python-version: "3.9"
spark-version-suffix: "-spark2"
- python-version: 3.10
- python-version: "3.10"
spark-version-suffix: "-spark2"
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 4d619d5

Please sign in to comment.