Skip to content

Commit

Permalink
#78 Add Python 3.10 to workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
astropenguin committed Jun 14, 2022
1 parent 26fcb0e commit ed9463d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.9"
python-version: "3.10"
- name: Install project dependencies
run: pip install poetry && poetry install
- name: Build docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.9"
python-version: "3.10"
- name: Publish package to PyPI
run: pip install poetry && poetry publish --build
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
POETRY_VIRTUALENVS_CREATE: false
strategy:
matrix:
python: ["3.7", "3.8", "3.9"]
python: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand Down

0 comments on commit ed9463d

Please sign in to comment.