Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ git config core.hooksPath .githooks
Workflow:
```bash
# 1) edit VERSION
echo 0.48.0 > VERSION
echo 0.48.1 > VERSION

# 2) sync manifests
uv run python scripts/sync_version.py
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.48.0
0.48.1
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ dev = [
"ipykernel",
]
rust = [
"s2and-rust>=0.48.0",
"s2and-rust>=0.48.1",
]

[tool.setuptools.packages.find]
Expand Down
2 changes: 1 addition & 1 deletion s2and/feature_port.py
Original file line number Diff line number Diff line change
Expand Up @@ -1064,7 +1064,7 @@ def get_constraints_matrix_rust(

get_constraints_matrix = getattr(featurizer, "get_constraints_matrix", None)
if not callable(get_constraints_matrix):
raise RuntimeError("RustFeaturizer.get_constraints_matrix is unavailable; rebuild/install s2and-rust>=0.48.0.")
raise RuntimeError("RustFeaturizer.get_constraints_matrix is unavailable; rebuild/install s2and-rust>=0.48.1.")
return list(
get_constraints_matrix(
pairs,
Expand Down
2 changes: 2 additions & 0 deletions s2and/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -4036,6 +4036,8 @@ def _update_signature_cluster_average(unassigned_signature: str, cluster_id: int
)

logger.info("Performing pairwise classification")
_ensure_lightgbm_fitted(self.classifier)
_ensure_lightgbm_fitted(self.nameless_classifier)
# Get predictions where there isn't partial supervision,
# and fill the rest from partial supervision labels.
batch_predictions, model_predict_seconds = _predict_and_combine(
Expand Down
2 changes: 1 addition & 1 deletion s2and_rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion s2and_rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2and_rust"
version = "0.48.0"
version = "0.48.1"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion s2and_rust/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "s2and-rust"
version = "0.48.0"
version = "0.48.1"
description = "Rust extension for s2and"
readme = "README.md"
requires-python = ">=3.11,<3.14"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading