Skip to content

Commit b144929

Browse files
committed
1.1.18
1 parent b13a7eb commit b144929

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/workflows/wheels.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ jobs:
5151
- uses: actions/checkout@v3
5252
with:
5353
submodules: true
54+
- name: Install pytest
55+
run: pip install pytest
5456
- name: Build wheels
5557
uses: pypa/[email protected]
5658
with:

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
[project.optional-dependencies]
2+
test = ["pytest"]
13
[project]
24
name = "pyxorfilter"
3-
version = "1.1.17"
5+
version = "1.1.18"
46
description = "Python bindings for C implementation of xorfilter"
57
authors = [
68
{name = "Amey Narkhede", email = "[email protected]"},

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.17"
3+
VERSION = "1.1.18"
44
__all__ = ["Xor8", "Xor16", "Fuse8", "Fuse16"]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name="pyxorfilter",
6-
version="1.1.17",
6+
version="1.1.18",
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",

0 commit comments

Comments
 (0)