From 2f34f7eb2ff84926cd7901a9cfe21fde17faa054 Mon Sep 17 00:00:00 2001 From: altescy Date: Sat, 19 Jul 2025 18:13:52 +0900 Subject: [PATCH 1/2] bump version number to v0.6.0 --- pyproject.toml | 2 +- tests/test_collatable.py | 2 +- uv.lock | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d38b824..79a1af4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "collatable" -version = "0.5.0" +version = "0.6.0" description = "Constructing batched tensors for any machine learning tasks" authors = [ {name="altescy", email="me@altescy.jp"}, diff --git a/tests/test_collatable.py b/tests/test_collatable.py index 9043dfe..321986b 100644 --- a/tests/test_collatable.py +++ b/tests/test_collatable.py @@ -2,4 +2,4 @@ def test_version() -> None: - assert collatable.__version__ == "0.5.0" + assert collatable.__version__ == "0.6.0" diff --git a/uv.lock b/uv.lock index 37cb479..7889032 100644 --- a/uv.lock +++ b/uv.lock @@ -10,7 +10,7 @@ resolution-markers = [ [[package]] name = "collatable" -version = "0.5.0" +version = "0.6.0" source = { editable = "." } dependencies = [ { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.9'" }, From c84f6fc82d7b831013908cb12063ec390385299b Mon Sep 17 00:00:00 2001 From: altescy Date: Sat, 19 Jul 2025 18:15:07 +0900 Subject: [PATCH 2/2] add classifiers --- pyproject.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 79a1af4..f17074d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,6 +8,16 @@ authors = [ license = "MIT" readme = "README.md" keywords = ["python", "machine learning"] +classifiers = [ + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", +] requires-python = ">=3.8,<4.0" dependencies = [ "numpy>=1.0.0,<1.26.4; python_version < '3.9'",