Skip to content

Commit 6dfd40f

Browse files
authored
Merge pull request #16 from bagerard/upgrade_python
deprecate eol & upgrade python
2 parents eb61905 + 1a20728 commit 6dfd40f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/github-actions.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v5
2121
- uses: actions/setup-python@v5
2222
with:
23-
python-version: 3.9
23+
python-version: 3.12
2424
- run: bash .github/workflows/install_ci_python_dep.sh
2525
- run: pre-commit run -a
2626

@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
python-version: [3.7, 3.8, 3.9, '3.10', pypy3.9]
34+
python-version: ['3.10', 3.11, 3.12, 3.13, pypy3.11]
3535
steps:
3636
- uses: actions/checkout@v5
3737
- name: Set up Python ${{ matrix.python-version }}
@@ -49,7 +49,7 @@ jobs:
4949
env:
5050
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5151
COVERALLS_SERVICE_NAME: github
52-
if: ${{ matrix.python-version == 3.7 }}
52+
if: ${{ matrix.python-version == 3.12 }}
5353
run: coveralls
5454

5555
build-n-publish:
@@ -60,7 +60,7 @@ jobs:
6060
- uses: actions/checkout@v5
6161
- uses: actions/setup-python@v5
6262
with:
63-
python-version: 3.9
63+
python-version: 3.12
6464
- name: build wheel
6565
run: |
6666
pip install wheel

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ MAKEFLAGS += --silent
33

44
.PHONY: setup-venv test
55

6-
PYTHON_VERSION = "3.9.15"
6+
PYTHON_VERSION = "3.12"
77
VENV_NAME := $(shell cat .python-version)
88

99

0 commit comments

Comments
 (0)