This is an automated email from the ASF dual-hosted git repository.
mgrigorov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/avro.git
The following commit(s) were added to refs/heads/main by this push:
new a4d408575 AVRO-4104: Drop support for Python 3.7 (#3276)
a4d408575 is described below
commit a4d408575f83bd8c2c04a6b9eb4f55217bd813c5
Author: Fokko Driesprong <[email protected]>
AuthorDate: Mon Dec 30 15:08:57 2024 +0100
AVRO-4104: Drop support for Python 3.7 (#3276)
Python 3.7 has been EOL since June 2023:
https://devguide.python.org/versions/
It now also breaks the CI because
third-party packages dropped 3.7.
---
lang/py/setup.cfg | 1 -
lang/py/tox.ini | 1 -
2 files changed, 2 deletions(-)
diff --git a/lang/py/setup.cfg b/lang/py/setup.cfg
index 5b2a6c780..d2b4594a3 100644
--- a/lang/py/setup.cfg
+++ b/lang/py/setup.cfg
@@ -33,7 +33,6 @@ license_files = avro/LICENSE
license = Apache License 2.0
classifiers =
License :: OSI Approved :: Apache Software License
- Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
diff --git a/lang/py/tox.ini b/lang/py/tox.ini
index 144e358dd..1847945b1 100644
--- a/lang/py/tox.ini
+++ b/lang/py/tox.ini
@@ -21,7 +21,6 @@ envlist =
docs
lint
typechecks
- py37
py38
py39
py310