Skip to content

Commit

Permalink
Add python 3.10 to CI (#2237)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Oct 10, 2021
1 parent cc31a3c commit f93bf65
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: actions/setup-python@v2
id: python
with:
python-version: 3.8
python-version: "3.x"

- name: Install pre-commit
run: |
Expand All @@ -48,10 +48,10 @@ jobs:
- name: Check out repository
uses: actions/checkout@v2

- name: Enable version 3.8 of Python
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: "3.x"

- name: Install dependencies
run: make requirements
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9]
python-version: [3.8, 3.9, "3.10"]
steps:
- name: 📥 Checkout the repository
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: "3.x"

- name: Get version
id: version
Expand Down

0 comments on commit f93bf65

Please sign in to comment.