Skip to content

Commit d0ebe48

Browse files
committed
#104 Use Python 3.10 in workflows
1 parent 9237938 commit d0ebe48

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v2
1616
- uses: actions/setup-python@v2
1717
with:
18-
python-version: "3.9"
18+
python-version: "3.10"
1919
- name: Install project dependencies
2020
run: pip install poetry && poetry install
2121
- name: Build docs

.github/workflows/pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
- uses: actions/checkout@v2
1616
- uses: actions/setup-python@v2
1717
with:
18-
python-version: "3.9"
18+
python-version: "3.10"
1919
- name: Publish package to PyPI
2020
run: pip install poetry && poetry publish --build

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
POETRY_VIRTUALENVS_CREATE: false
1717
strategy:
1818
matrix:
19-
python: ["3.7", "3.8", "3.9"]
19+
python: ["3.7", "3.8", "3.9", "3.10"]
2020
steps:
2121
- uses: actions/checkout@v2
2222
- uses: actions/setup-python@v2

0 commit comments

Comments
 (0)