Skip to content

Commit

Permalink
Merge pull request #39 from sergey-dryabzhinsky/update-zstd-1.4.0
Browse files Browse the repository at this point in the history
Update libzstd to 1.4.0 version
  • Loading branch information
sergey-dryabzhinsky committed Apr 28, 2019
2 parents 2057b70 + 7a2bbe7 commit 273e7da
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 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.3.8.0
Version: 1.4.0.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.3.8.0.tar.gz
Download-URL: https://github.com/sergey-dryabzhinsky/python-zstd/archive/v1.4.0.0.tar.gz
Description: Simple ZSTandarD bindings for Python
Keywords: zstd,zstandard,compression
Platform: POSIX
4 changes: 2 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, 3, 8,)
VERSION = (1, 4, 0,)
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
3 changes: 1 addition & 2 deletions tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ def setUp(self):
self.ZSTD_EXTERNAL = True
self.VERSION = os.getenv("VERSION")
self.PKG_VERSION = os.getenv("PKG_VERSION")
v = [int(n) for n in self.VERSION.split(".")]
v = sorted(v, reverse=True)
v = [int(n) for n in reversed(self.VERSION.split("."))]
self.VERSION_INT = 0
i = 0
for n in v:
Expand Down
2 changes: 1 addition & 1 deletion zstd
Submodule zstd updated 150 files

0 comments on commit 273e7da

Please sign in to comment.