File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
Metadata-Version: 1.1
2
2
Name: zstd
3
- Version: 1.5.2.6
3
+ Version: 1.5.4.0
4
4
Summary: Simple python bindings to Yann Collet ZSTD compression library
5
5
Home-page: https://github.com/sergey-dryabzhinsky/python-zstd
6
6
Author: Sergey Dryabzhinsky
7
7
8
8
License: BSD
9
- Download-URL: https://github.com/sergey-dryabzhinsky/python-zstd/archive/v1.5.2.6 .tar.gz
9
+ Download-URL: https://github.com/sergey-dryabzhinsky/python-zstd/archive/v1.5.4.0 .tar.gz
10
10
Description: Simple ZSTandarD bindings for Python
11
11
Keywords: zstd,zstandard,compression
12
12
Platform: POSIX
Original file line number Diff line number Diff line change 8
8
from setuptools .command .build_ext import build_ext
9
9
10
10
# ZSTD version
11
- VERSION = (1 , 5 , 2 ,)
11
+ VERSION = (1 , 5 , 4 ,)
12
12
VERSION_STR = "." .join ([str (x ) for x in VERSION ])
13
13
14
14
# Package version
15
15
PKG_VERSION = VERSION
16
16
# Minor versions
17
- PKG_VERSION += ("6 " ,)
17
+ PKG_VERSION += ("0 " ,)
18
18
PKG_VERSION_STR = "." .join ([str (x ) for x in PKG_VERSION ])
19
19
20
20
###
Original file line number Diff line number Diff line change @@ -40,10 +40,10 @@ def raise_skip(msg):
40
40
41
41
class BaseTestZSTD (unittest .TestCase ):
42
42
43
- VERSION = "1.5.2 "
44
- VERSION_INT = 10502
43
+ VERSION = "1.5.4 "
44
+ VERSION_INT = 10504
45
45
VERSION_INT_MIN = 1 * 100 * 100 + 0 * 1 * 100 + 0
46
- PKG_VERSION = "1.5.2.6 "
46
+ PKG_VERSION = "1.5.4.0 "
47
47
48
48
def helper_version (self ):
49
49
self .assertEqual (self .PKG_VERSION , zstd .version ())
You can’t perform that action at this time.
0 commit comments