You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by ko...@apache.org on 2021/03/25 15:28:31 UTC

[avro] branch master updated: AVRO-3004 Drop support for Python 3.5 (#1151)

This is an automated email from the ASF dual-hosted git repository.

kojiromike pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/master by this push:
     new 5bd7cfe  AVRO-3004 Drop support for Python 3.5 (#1151)
5bd7cfe is described below

commit 5bd7cfe0bf742d0482bf6f54b4541b4d22cc87d9
Author: Subhash Bhushan <su...@gmail.com>
AuthorDate: Thu Mar 25 08:28:05 2021 -0700

    AVRO-3004 Drop support for Python 3.5 (#1151)
    
    * AVRO-3004 Drop support for Python 3.5
    
    This PR removes 3.5 support from build and setup, including classifiers
    
    Closes: AVRO-3004 (https://issues.apache.org/jira/browse/AVRO-3004)
    
    * Add py3.9 and pypy3.7 to tox test envs
---
 lang/py/setup.cfg | 4 ++--
 lang/py/tox.ini   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/lang/py/setup.cfg b/lang/py/setup.cfg
index 8709c09..056d89f 100644
--- a/lang/py/setup.cfg
+++ b/lang/py/setup.cfg
@@ -33,10 +33,10 @@ license_file = avro/LICENSE
 license = Apache License 2.0
 classifiers =
     License :: OSI Approved :: Apache Software License
-    Programming Language :: Python :: 3.5
     Programming Language :: Python :: 3.6
     Programming Language :: Python :: 3.7
     Programming Language :: Python :: 3.8
+    Programming Language :: Python :: 3.9
     Development Status :: 5 - Production/Stable
 
 [bdist_wheel]
@@ -56,7 +56,7 @@ install_requires =
 zip_safe = true
 scripts =
     scripts/avro
-python_requires = >=3.5
+python_requires = >=3.6
 
 [options.package_data]
 avro =
diff --git a/lang/py/tox.ini b/lang/py/tox.ini
index 885addd..1495788 100644
--- a/lang/py/tox.ini
+++ b/lang/py/tox.ini
@@ -20,12 +20,12 @@ envlist =
     # Fastest checks first
     lint
     typechecks
-    py35
     py36
     py37
     py38
-    pypy3.5
+    py39
     pypy3.6
+    pypy3.7
 
 
 [coverage:run]