Skip to content

Commit 9fef3f0

Browse files
committed
Raised min support from python 3.8 to 3.10
1 parent 898f1e4 commit 9fef3f0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-and-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
strategy:
2525
matrix:
26-
python-version: ["3.8","3.9","3.10","3.11","3.12","3.13"]
26+
python-version: ["3.10","3.11","3.12","3.13"]
2727

2828
steps:
2929
- uses: actions/checkout@v4

.github/workflows/build-and-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.8","3.9","3.10","3.11","3.12","3.13"]
15+
python-version: ["3.10","3.11","3.12","3.13"]
1616

1717
steps:
1818
- uses: actions/checkout@v4

Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM python:3.8
1+
FROM python:3.10
22
COPY . /build
33
RUN pip install --no-cache-dir -e /build[dev]

0 commit comments

Comments
 (0)