Skip to content

Commit

Permalink
Merge pull request #51 from sergey-dryabzhinsky/issue-50-update-zstd-…
Browse files Browse the repository at this point in the history
…to-1.4.5

Update zstd to 1.4.5
  • Loading branch information
sergey-dryabzhinsky committed May 26, 2020
2 parents a1494a1 + 6d8b7ea commit deff59c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Metadata-Version: 1.1
Name: zstd
Version: 1.4.4.1
Version: 1.4.5.0
Summary: Simple python bindings to Yann Collet ZSTD compression library
Home-page: https://github.com/sergey-dryabzhinsky/python-zstd
Author: Sergey Dryabzhinsky
Author-email: sergey.dryabzhinsky@gmail.com
License: BSD
Download-URL: https://github.com/sergey-dryabzhinsky/python-zstd/archive/v1.4.4.1.tar.gz
Download-URL: https://github.com/sergey-dryabzhinsky/python-zstd/archive/v1.4.5.0.tar.gz
Description: Simple ZSTandarD bindings for Python
Keywords: zstd,zstandard,compression
Platform: POSIX
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ LINKS
-----

* Zstandard: https://github.com/facebook/zstd
* More full-featured and compatible with Zstandard python bindings by Gregory Szorc: https://pypi.python.org/pypi/zstandard
* More full-featured and compatible with Zstandard python bindings by Gregory Szorc: https://github.com/indygreg/python-zstandard


Build from source
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
from setuptools.command.build_ext import build_ext

# ZSTD version
VERSION = (1, 4, 4,)
VERSION = (1, 4, 5,)
VERSION_STR = ".".join([str(x) for x in VERSION])

# Package version
PKG_VERSION = VERSION
# Minor versions
PKG_VERSION += ("1",)
PKG_VERSION += ("0",)
PKG_VERSION_STR = ".".join([str(x) for x in PKG_VERSION])

###
Expand Down Expand Up @@ -111,6 +111,7 @@ def build_extensions(self):
'compress/zstd_compress.c',
'compress/zstd_compress_literals.c',
'compress/zstd_compress_sequences.c',
'compress/zstd_compress_superblock.c',
'compress/zstdmt_compress.c',
'compress/zstd_fast.c', 'compress/zstd_double_fast.c', 'compress/zstd_lazy.c', 'compress/zstd_opt.c', 'compress/zstd_ldm.c',
'compress/fse_compress.c', 'compress/huf_compress.c',
Expand Down Expand Up @@ -191,5 +192,6 @@ def my_test_suite():
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)
2 changes: 1 addition & 1 deletion zstd
Submodule zstd updated 275 files

0 comments on commit deff59c

Please sign in to comment.