Skip to content

Commit

Permalink
Merge pull request #10 from cclauss/patch-1
Browse files Browse the repository at this point in the history
Upgrade GitHub Actions and add Python 3.12
  • Loading branch information
iurisilvio authored Jan 13, 2024
2 parents 2098829 + 951ece4 commit 1ef9b22
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -26,7 +26,7 @@ jobs:
python -m pip install poetry tox tox-gh-actions
- name: Cache tox environments
id: cache-tox
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: .tox
key: ${{ runner.os }}-${{ matrix.python-version }}-tox-${{ hashFiles('pyproject.toml') }} }}
Expand Down

0 comments on commit 1ef9b22

Please sign in to comment.