Skip to content

Commit

Permalink
Version 1.5.2.2: stup tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Dryabzhinsky committed Apr 17, 2022
1 parent da276d8 commit e70a1ab
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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.1
Version: 1.5.2.2
Summary: Simple python bindings to Yann Collet ZSTD compression library
Home-page: https://github.com/sergey-dryabzhinsky/python-zstd
Author: Sergey Dryabzhinsky
Author-email: [email protected]
License: BSD
Download-URL: https://github.com/sergey-dryabzhinsky/python-zstd/archive/v1.5.2.1.tar.gz
Download-URL: https://github.com/sergey-dryabzhinsky/python-zstd/archive/v1.5.2.2.tar.gz
Description: Simple ZSTandarD bindings for Python
Keywords: zstd,zstandard,compression
Platform: POSIX
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# Package version
PKG_VERSION = VERSION
# Minor versions
PKG_VERSION += ("1",)
PKG_VERSION += ("2",)
PKG_VERSION_STR = ".".join([str(x) for x in PKG_VERSION])

###
Expand Down
2 changes: 1 addition & 1 deletion tests/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class BaseTestZSTD(unittest.TestCase):
VERSION = "1.5.2"
VERSION_INT = 10502
VERSION_INT_MIN = 1 * 100*100 + 0 * 1*100 + 0
PKG_VERSION = "1.5.2.0"
PKG_VERSION = "1.5.2.2"

def helper_version(self):
self.assertEqual(self.PKG_VERSION, zstd.version())
Expand Down

0 comments on commit e70a1ab

Please sign in to comment.