You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by fo...@apache.org on 2019/05/21 15:02:38 UTC

[avro] branch master updated: AVRO-XXX: Classifiers should be an array

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

fokko 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 e607b31  AVRO-XXX: Classifiers should be an array
e607b31 is described below

commit e607b3164e59be9ab3f0dec641d8824a024429b9
Author: Fokko Driesprong <fo...@apache.org>
AuthorDate: Tue May 21 17:02:32 2019 +0200

    AVRO-XXX: Classifiers should be an array
---
 lang/py3/setup.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lang/py3/setup.py b/lang/py3/setup.py
index c96e08f..1b31223 100755
--- a/lang/py3/setup.py
+++ b/lang/py3/setup.py
@@ -141,7 +141,7 @@ def Main():
       license = 'Apache License 2.0',
       keywords = 'avro serialization rpc',
       url = 'http://avro.apache.org/',
-      classifiers=(
+      classifiers=[
           'License :: OSI Approved :: Apache Software License',
           'Programming Language :: Python :: 3 :: Only',
           'Programming Language :: Python :: 3.4',
@@ -149,7 +149,7 @@ def Main():
           'Programming Language :: Python :: 3.6',
           'Programming Language :: Python :: 3.7',
           'Programming Language :: Python :: 3.8',
-      ),
+      ],
       python_requires='>=3.4',
   )