Skip to content

Commit

Permalink
Merge pull request #91 from sergey-dryabzhinsky/update-zstd-154
Browse files Browse the repository at this point in the history
For #90: Update zstd to 1.5.4, version numbers, etc.
  • Loading branch information
sergey-dryabzhinsky committed Feb 11, 2023
2 parents e1ab38f + 2f1f471 commit c8a619a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 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.5.2.6
Version: 1.5.4.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.5.2.6.tar.gz
Download-URL: https://github.com/sergey-dryabzhinsky/python-zstd/archive/v1.5.4.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, 5, 2,)
VERSION = (1, 5, 4,)
VERSION_STR = ".".join([str(x) for x in VERSION])

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

###
Expand Down
6 changes: 3 additions & 3 deletions tests/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ def raise_skip(msg):

class BaseTestZSTD(unittest.TestCase):

VERSION = "1.5.2"
VERSION_INT = 10502
VERSION = "1.5.4"
VERSION_INT = 10504
VERSION_INT_MIN = 1 * 100*100 + 0 * 1*100 + 0
PKG_VERSION = "1.5.2.6"
PKG_VERSION = "1.5.4.0"

def helper_version(self):
self.assertEqual(self.PKG_VERSION, zstd.version())
Expand Down
2 changes: 1 addition & 1 deletion zstd
Submodule zstd updated 478 files

0 comments on commit c8a619a

Please sign in to comment.