Skip to content

Commit 893a7b1

Browse files
committed
1.1.13
1 parent 24f70af commit 893a7b1

File tree

5 files changed

+5
-202
lines changed

5 files changed

+5
-202
lines changed

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setting up Python
2525
uses: actions/setup-python@v5
2626
with:
27-
python-version: 3.8
27+
python-version: '3.13'
2828

2929
- name: Installing python build dependencies
3030
run: |
@@ -58,7 +58,7 @@ jobs:
5858
- uses: actions/setup-python@v5
5959
name: Setting up Python
6060
with:
61-
python-version: '3.8'
61+
python-version: '3.13'
6262

6363
- name: Set up QEMU
6464
if: runner.os == 'Linux'

.travis.yml

Lines changed: 0 additions & 197 deletions
This file was deleted.

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