Skip to content

Commit 9a4288d

Browse files
Remove support for older Python versions (#55)
1 parent 0df396d commit 9a4288d

File tree

5 files changed

+187
-252
lines changed

5 files changed

+187
-252
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
os: [Ubuntu, MacOS, Windows]
19-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
19+
python-version: ['3.10', '3.11', '3.12', '3.13']
2020
steps:
2121
- uses: actions/checkout@v4
2222

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v4
2525

26-
- name: Set up Python 3.8
26+
- name: Set up Python 3.10
2727
uses: actions/setup-python@v4
2828
with:
29-
python-version: "3.8"
29+
python-version: "3.10"
3030

3131
- name: Install poetry
3232
run: python -m pip install poetry

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pip install betterproto2
1010
```
1111

1212
!!! info
13-
The package is compatible with all Python versions from 3.8 to 3.13.
13+
The package is compatible with all Python versions from 3.10 to 3.13.
1414

1515

1616
## Compiling proto files

0 commit comments

Comments
 (0)