Skip to content

Commit

Permalink
CI: Bump python versions in CI
Browse files Browse the repository at this point in the history
Also, python versions should be strings or else 3.10==3.1 according to GH Actions.
  • Loading branch information
Jacob-Stevens-Haas committed Apr 7, 2023
1 parent ae6d40a commit 4c05236
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: "3.8"
- name: Linting
run: |
pip install pre-commit
Expand All @@ -23,7 +23,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8]
python-version: ["3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: "3.8"
- name: Install dependencies
run: pip install wheel
- name: Build package
Expand Down

0 comments on commit 4c05236

Please sign in to comment.