Skip to content

Commit bf1358a

Browse files
committed
remove official python 3.8 support
1 parent fdef8af commit bf1358a

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
14+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1515

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

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ To install ``pyomdbapi``, simply clone the `repository on GitHub
4343

4444
$ python setup.py install
4545

46-
`pyomdbapi` supports python versions 3.8 - 3.13
46+
`pyomdbapi` supports python versions 3.9 - 3.13
4747

4848

4949
Quickstart

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,13 @@ classifiers = [
1515
"Topic :: Utilities",
1616
"Topic :: Internet",
1717
"Programming Language :: Python :: 3",
18-
"Programming Language :: Python :: 3.8",
1918
"Programming Language :: Python :: 3.9",
2019
"Programming Language :: Python :: 3.10",
2120
"Programming Language :: Python :: 3.11",
2221
"Programming Language :: Python :: 3.12",
2322
"Programming Language :: Python :: 3.13",
2423
]
25-
requires-python = ">=3.8"
24+
requires-python = ">=3.9"
2625
dependencies = ["requests>=2"]
2726

2827
[project.optional-dependencies]

0 commit comments

Comments
 (0)