Skip to content

Commit be021a3

Browse files
committed
Drop support for Python 3.8, 3.9 and 3.10
1 parent cc95631 commit be021a3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-22.04
1919
strategy:
2020
matrix:
21-
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
21+
python: ['3.11', '3.12']
2222
fail-fast: false
2323

2424
steps:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
'dev': ['django', 'flask'],
4646
'docs': ['sphinx-rtd-theme'],
4747
},
48-
python_requires='>3.5',
48+
python_requires='>3.10',
4949
include_package_data=True,
5050
classifiers=[
5151
'Development Status :: 4 - Beta',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[tox]
55
skip_missing_interpreters = true
66
envlist =
7-
docs,py38,py39,py310,py311,py312,pypy3
7+
docs,py311,py312
88

99
logstash_async_modules = logstash_async tests
1010

0 commit comments

Comments
 (0)