Skip to content

Commit 2002411

Browse files
committed
Merge branch 'temp'
2 parents baecb13 + a5f84f5 commit 2002411

6 files changed

Lines changed: 38 additions & 37 deletions

File tree

bz3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Copyright (c) 2008-2023 synodriver <diguohuangjiajinweijun@gmail.com>
33
"""
4-
__version__ = "0.1.3"
4+
__version__ = "0.1.4"
55

66
from bz3.backends import (
77
bound,

bz3/backends/cffi/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
source,
136136
sources=c_sources,
137137
include_dirs=["./dep/include"],
138-
define_macros=[("VERSION", '"1.3.2.r2-gbb2ced7"')],
138+
define_macros=[("VERSION", '"1.4.0.r3-gd9e5e15"')],
139139
)
140140

141141
if __name__ == "__main__":

bz3/backends/cython/_bz3.c

Lines changed: 32 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dep

Submodule dep updated from ba14bd9 to d9e5e15

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def build_extensions(self):
5252

5353
c_sources = ["bz3/backends/cython/_bz3.pyx"] + glob.glob("./dep/src/*.c")
5454
c_sources = list(filter(lambda x: "main" not in x, c_sources))
55-
define_macros = [("VERSION", '"1.3.2.r2-gbb2ced7"')]
55+
define_macros = [("VERSION", '"1.4.0.r3-gd9e5e15"')]
5656
if has_option("--debug"):
5757
define_macros.append(("MEMDEBUG", None))
5858

test/fuzz.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"""
44
import secrets
55
from unittest import TestCase
6-
6+
import sys
7+
sys.path.append(".")
78
from bz3 import bound, compress, compress_into, decompress, decompress_into
89

910

0 commit comments

Comments
 (0)