File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11Metadata-Version: 1.1
22Name: zstd
3- Version: 1.5.2.1
3+ Version: 1.5.2.2
44Summary: Simple python bindings to Yann Collet ZSTD compression library
55Home-page: https://github.com/sergey-dryabzhinsky/python-zstd
66Author: Sergey Dryabzhinsky
7788License: BSD
9- Download-URL: https://github.com/sergey-dryabzhinsky/python-zstd/archive/v1.5.2.1 .tar.gz
9+ Download-URL: https://github.com/sergey-dryabzhinsky/python-zstd/archive/v1.5.2.2 .tar.gz
1010Description: Simple ZSTandarD bindings for Python
1111Keywords: zstd,zstandard,compression
1212Platform: POSIX
Original file line number Diff line number Diff line change 1414# Package version
1515PKG_VERSION = VERSION
1616# Minor versions
17- PKG_VERSION += ("1 " ,)
17+ PKG_VERSION += ("2 " ,)
1818PKG_VERSION_STR = "." .join ([str (x ) for x in PKG_VERSION ])
1919
2020###
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ class BaseTestZSTD(unittest.TestCase):
4343 VERSION = "1.5.2"
4444 VERSION_INT = 10502
4545 VERSION_INT_MIN = 1 * 100 * 100 + 0 * 1 * 100 + 0
46- PKG_VERSION = "1.5.2.0 "
46+ PKG_VERSION = "1.5.2.2 "
4747
4848 def helper_version (self ):
4949 self .assertEqual (self .PKG_VERSION , zstd .version ())
You can’t perform that action at this time.
0 commit comments