Skip to content

Commit afe67f4

Browse files
committed
1.1.19
1 parent b144929 commit afe67f4

File tree

4 files changed

+3
-12
lines changed

4 files changed

+3
-12
lines changed

.github/workflows/wheels.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ on:
99

1010
env:
1111
CIBW_TEST_EXTRAS: test
12-
CIBW_TEST_COMMAND: "pytest {project}/tests"
1312
CIBW_TEST_SKIP: "*_arm64 *_universal2:arm64"
1413
CIBW_ARCHS_MACOS: "x86_64 universal2"
1514

@@ -51,8 +50,6 @@ jobs:
5150
- uses: actions/checkout@v3
5251
with:
5352
submodules: true
54-
- name: Install pytest
55-
run: pip install pytest
5653
- name: Build wheels
5754
uses: pypa/[email protected]
5855
with:

pyproject.toml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
[project.optional-dependencies]
2-
test = ["pytest"]
31
[project]
42
name = "pyxorfilter"
5-
version = "1.1.18"
3+
version = "1.1.19"
64
description = "Python bindings for C implementation of xorfilter"
75
authors = [
86
{name = "Amey Narkhede", email = "[email protected]"},
@@ -22,10 +20,6 @@ build-backend = "setuptools.build_meta"
2220
[tool.cibuildwheel]
2321
environment = { PIP_GLOBAL_OPTION="build_ext", PIP_NO_BUILD_ISOLATION="1" , CIBUILDWHEEL="1" }
2422
build-frontend = "pip"
25-
test-requires = "pytest"
26-
before-test = ["pip install -e {package}"]
27-
test-command = "pytest {project}/tests"
28-
test-skip = "cp37-* pp37-*"
2923

3024
[tool.cibuildwheel.linux]
3125
before-all = "yum install -y libffi-devel"

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.18"
3+
VERSION = "1.1.19"
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.18",
6+
version="1.1.19",
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)