Skip to content

Commit 0b2155b

Browse files
committed
1.1.8
1 parent 95b41b7 commit 0b2155b

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyxorfilter"
3-
version = "1.1.7"
3+
version = "1.1.8"
44
description = "Python bindings for C implementation of xorfilter"
55
authors = [
66
{name = "Amey Narkhede", email = "[email protected]"},
@@ -14,7 +14,7 @@ requires-python = ">=3.0"
1414
Homepage = "https://github.com/glitzflitz/pyxorfilter"
1515

1616
[build-system]
17-
requires = ["setuptools", "wheel"]
17+
requires = ["setuptools", "wheel", "cffi"]
1818
build-backend = "setuptools.build_meta"
1919

2020
[tool.cibuildwheel]

pyxorfilter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from pyxorfilter.pyxorfilter import Xor8, Xor16, Fuse8, Fuse16
22

3-
VERSION = "1.1.7"
3+
VERSION = "1.1.8"
44
__all__ = ["Xor8", "Xor16", "Fuse8", "Fuse16"]

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name="pyxorfilter",
6-
version="1.1.7",
6+
version="1.1.8",
77
description="Python bindings for C implementation of xorfilter",
88
long_description=open("README.md", "r", encoding='utf-8').read(),
99
long_description_content_type="text/markdown",
@@ -15,7 +15,6 @@
1515
packages=find_packages(),
1616
ext_package="pyxorfilter",
1717
install_requires=["cffi","xxhash"],
18-
setup_requires=["cffi"],
19-
cffi_modules=["pyxorfilter/ffibuild.py:ffi"],
18+
cffi_modules=["pyxorfilter/ffibuild.py:ffi"],
2019
)
2120

0 commit comments

Comments
 (0)