Skip to content

Commit 698a610

Browse files
committed
Bump to 0.1.3 and lower minimum Python to 3.10
1 parent 2e5d082 commit 698a610

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta"
1010
# ============================================================================
1111
[project]
1212
name = "kh57"
13-
version = "0.1.2"
13+
version = "0.1.3"
1414
description = "Efficient range reservoir sampling from massive sorted key-value datasets."
1515
readme = "README.md"
1616
license = "Apache-2.0"
@@ -36,14 +36,16 @@ classifiers = [
3636
"Intended Audience :: Developers",
3737
"Operating System :: OS Independent",
3838
"Programming Language :: Python :: 3",
39+
"Programming Language :: Python :: 3.10",
40+
"Programming Language :: Python :: 3.11",
3941
"Programming Language :: Python :: 3.12",
4042
"Programming Language :: Python :: 3.13",
4143
"Programming Language :: Python :: 3.14",
4244
"Programming Language :: Python :: Implementation :: CPython",
4345
"Topic :: Software Development :: Libraries :: Python Modules",
4446
"Topic :: Scientific/Engineering",
4547
]
46-
requires-python = ">=3.12"
48+
requires-python = ">=3.10"
4749
dependencies = []
4850

4951
[project.urls]

src/kh57/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77

88
__all__ = ["Backend", "MemBackend", "kh57", "recover", "sample", "uniform_hash"]
9-
__version__ = "0.1.2"
9+
__version__ = "0.1.3"

0 commit comments

Comments
 (0)