Skip to content
This repository was archived by the owner on Jan 1, 2026. It is now read-only.

Commit 95b41b7

Browse files
committed
1.1.7
1 parent 83b1e9d commit 95b41b7

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

.github/workflows/wheels.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ jobs:
1818
name: Creating source release
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v2
22-
21+
- uses: actions/checkout@v5
22+
with:
23+
submodules: true
2324
- name: Setting up Python
24-
uses: actions/setup-python@v2
25+
uses: actions/setup-python@v5
2526
with:
2627
python-version: 3.8
2728

@@ -54,9 +55,11 @@ jobs:
5455
py: ["cp39", "cp310", "cp311", "cp312", "pp37", "pp38", "pp39"]
5556

5657
steps:
57-
- uses: actions/checkout@v2
58+
- uses: actions/checkout@v5
59+
with:
60+
submodules: true
5861

59-
- uses: actions/setup-python@v2
62+
- uses: actions/setup-python@v5
6063
name: Setting up Python
6164
with:
6265
python-version: '3.8'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyxorfilter"
3-
version = "1.1.5"
3+
version = "1.1.7"
44
description = "Python bindings for C implementation of xorfilter"
55
authors = [
66
{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.5"
3+
VERSION = "1.1.7"
44
__all__ = ["Xor8", "Xor16", "Fuse8", "Fuse16"]

setup.py

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

44
setup(
55
name="pyxorfilter",
6-
version="1.1.5",
6+
version="1.1.7",
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",
@@ -16,7 +16,6 @@
1616
ext_package="pyxorfilter",
1717
install_requires=["cffi","xxhash"],
1818
setup_requires=["cffi"],
19-
cffi_modules=["pyxorfilter/ffibuild.py:ffi"],
20-
test_suite="nose.collector",
21-
tests_require=["nose"],
19+
cffi_modules=["pyxorfilter/ffibuild.py:ffi"],
2220
)
21+

0 commit comments

Comments
 (0)