Skip to content

Commit 620c43b

Browse files
committed
feat(ci)!: drop support for Python 3.8
BREAKING CHANGE: Python 3.8 is no longer supported and will cause errors due to the use of typing hints.
1 parent 5b36457 commit 620c43b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
runs-on: ubuntu-latest
5454
strategy:
5555
matrix:
56-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
56+
python-version: ["3.9", "3.10", "3.11", "3.12"]
5757
steps:
5858
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
5959
- run: pipx install poetry
@@ -71,7 +71,7 @@ jobs:
7171
needs: lint
7272
strategy:
7373
matrix:
74-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
74+
python-version: ["3.9", "3.10", "3.11", "3.12"]
7575
steps:
7676
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
7777
- run: pipx install poetry

0 commit comments

Comments
 (0)