This is an automated email from the ASF dual-hosted git repository. rskraba pushed a commit to branch branch-1.9 in repository https://gitbox.apache.org/repos/asf/avro.git
commit 075a12a10ae30aba0187b225ca7669b97c1ce1ea Author: Michael A. Smith <[email protected]> AuthorDate: Sun Oct 20 11:53:04 2019 -0400 AVRO-2601: zstandard in extras_require --- lang/py/setup.py | 1 + lang/py3/setup.cfg | 1 + 2 files changed, 2 insertions(+) diff --git a/lang/py/setup.py b/lang/py/setup.py index 6063869..c2e07c6 100755 --- a/lang/py/setup.py +++ b/lang/py/setup.py @@ -84,5 +84,6 @@ setuptools.setup( url = 'https://avro.apache.org/', extras_require = { 'snappy': ['python-snappy'], + 'zstandard': ['zstandard'], }, ) diff --git a/lang/py3/setup.cfg b/lang/py3/setup.cfg index 28fcd45..c721ca6 100644 --- a/lang/py3/setup.cfg +++ b/lang/py3/setup.cfg @@ -62,6 +62,7 @@ avro = [options.extras_require] snappy = snappy +zstandard = zstandard [aliases] dist = sdist --dist-dir ../../dist/py3
