Skip to content

Commit ce637ae

Browse files
authored
Remove python v3.7 testing from CI (#58)
* Remove python 3.7 testing and add 3.11 and 3.12 * Update action versions
1 parent be27747 commit ce637ae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/python.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: [3.7, 3.8, 3.9, "3.10"]
13+
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v2
17+
uses: actions/setup-python@v4
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
- name: Install dependencies
2121
run: python -m pip install -e .[dev]
2222
- name: pre-commit checks
23-
uses: pre-commit/action@v2.0.2
23+
uses: pre-commit/action@v3.0.0
2424
- name: Tests
2525
run: pytest -v tests/

0 commit comments

Comments
 (0)