structboost 0.1.1__tar.gz → 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {structboost-0.1.1 → structboost-0.1.2}/CHANGELOG.md +12 -0
- {structboost-0.1.1 → structboost-0.1.2}/CITATION.cff +1 -1
- {structboost-0.1.1 → structboost-0.1.2}/PKG-INFO +3 -1
- {structboost-0.1.1 → structboost-0.1.2}/pyproject.toml +3 -1
- {structboost-0.1.1 → structboost-0.1.2}/.gitignore +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/CODE_OF_CONDUCT.md +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/CONTRIBUTING.md +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/LICENSE +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/README.md +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/conftest.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/src/structboost/__init__.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/src/structboost/_annotation.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/src/structboost/_boosting.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/src/structboost/_decoder.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/src/structboost/_encoder.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/src/structboost/_explorer.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/src/structboost/_io.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/src/structboost/_model.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/src/structboost/_persistence.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/src/structboost/_plotting.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/src/structboost/_simulation.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/src/structboost/_stability.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/src/structboost/_types.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/src/structboost/_utils.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/src/structboost/py.typed +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/tests/test_allboost.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/tests/test_annotation.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/tests/test_bae.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/tests/test_bae_diagnostics.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/tests/test_bae_init.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/tests/test_bae_layer.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/tests/test_bae_persistence.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/tests/test_bae_transfer.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/tests/test_batch_integration.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/tests/test_explorer.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/tests/test_linear_ceiling.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/tests/test_obs_encoding.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/tests/test_public_api.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/tests/test_resolve_mandatory.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/tests/test_rng_isolation.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/tests/test_simulation.py +0 -0
- {structboost-0.1.1 → structboost-0.1.2}/tests/test_stability.py +0 -0
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
Releases follow [semantic versioning](https://semver.org). While the project is
|
|
4
4
|
pre-1.0, a minor bump may break API.
|
|
5
5
|
|
|
6
|
+
### [0.1.2] - 2026-08-03
|
|
7
|
+
|
|
8
|
+
Project metadata gains `Documentation` and `Changelog` links. PyPI renders
|
|
9
|
+
`project.urls` as the sidebar next to the project description, and it carried
|
|
10
|
+
only the repository and the issue tracker — so the documentation site, where
|
|
11
|
+
every substantive explanation lives, was reachable from the README body but not
|
|
12
|
+
from the navigation beside it. Both targets are verified live.
|
|
13
|
+
|
|
14
|
+
As with 0.1.1, nothing in the package changed: `project.urls` reaches users only
|
|
15
|
+
through an upload, so correcting it in the repository has no effect until a
|
|
16
|
+
release carries it.
|
|
17
|
+
|
|
6
18
|
### [0.1.1] - 2026-08-03
|
|
7
19
|
|
|
8
20
|
A metadata release. No code in `structboost` changed; every difference is in
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: structboost
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Boosting Autoencoders (BAE) and componentwise L2 boosting utilities for scverse-style workflows.
|
|
5
5
|
Project-URL: Homepage, https://github.com/NiklasBrunn/structboost
|
|
6
|
+
Project-URL: Documentation, https://niklasbrunn.github.io/structboost
|
|
6
7
|
Project-URL: Repository, https://github.com/NiklasBrunn/structboost
|
|
7
8
|
Project-URL: Issues, https://github.com/NiklasBrunn/structboost/issues
|
|
9
|
+
Project-URL: Changelog, https://niklasbrunn.github.io/structboost/changelog.html
|
|
8
10
|
Author: Niklas Brunn
|
|
9
11
|
License: MIT License
|
|
10
12
|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "structboost"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.2"
|
|
8
8
|
description = "Boosting Autoencoders (BAE) and componentwise L2 boosting utilities for scverse-style workflows."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { file = "LICENSE" }
|
|
@@ -73,8 +73,10 @@ docs = [
|
|
|
73
73
|
|
|
74
74
|
[project.urls]
|
|
75
75
|
Homepage = "https://github.com/NiklasBrunn/structboost"
|
|
76
|
+
Documentation = "https://niklasbrunn.github.io/structboost"
|
|
76
77
|
Repository = "https://github.com/NiklasBrunn/structboost"
|
|
77
78
|
Issues = "https://github.com/NiklasBrunn/structboost/issues"
|
|
79
|
+
Changelog = "https://niklasbrunn.github.io/structboost/changelog.html"
|
|
78
80
|
|
|
79
81
|
[tool.hatch.build.targets.wheel]
|
|
80
82
|
packages = ["src/structboost"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|