Metadata-Version: 2.4
Name: crforest
Version: 0.3.0.post1
Summary: DEPRECATED — renamed to 'comprisk' in 0.3.1. Install `pip install comprisk`.
Project-URL: Homepage, https://pypi.org/project/comprisk/
Project-URL: Repository, https://github.com/sunnyadn/comprisk
Project-URL: Issues, https://github.com/sunnyadn/comprisk/issues
Project-URL: Changelog, https://github.com/sunnyadn/comprisk/blob/main/CHANGELOG.md
Author-email: Sunny Yang <guangy4@illinois.edu>, Wanqi Zhao <wanqi.zhao@ucalgary.ca>
License-Expression: Apache-2.0
License-File: LICENSE
Classifier: Development Status :: 7 - Inactive
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Scientific/Engineering :: Medical Science Apps.
Requires-Python: >=3.10
Requires-Dist: comprisk>=0.3.1
Description-Content-Type: text/markdown

# crforest — renamed to `comprisk`

> **This package was renamed to [`comprisk`](https://pypi.org/project/comprisk/) in 0.3.1.**
> The `crforest` PyPI package is no longer maintained. New releases ship as `comprisk`.

`crforest >= 0.3.0.post1` is a thin redirect shim: it depends on `comprisk>=0.3.1`
and re-exports the same public API with a `DeprecationWarning` on import.
Existing code keeps working. Please migrate at your earliest convenience.

## Migrate

```bash
pip uninstall crforest
pip install comprisk
```

```python
# before
from crforest import CompetingRiskForest

# after
from comprisk import CompetingRiskForest
```

The API is unchanged. See the [comprisk migration guide](https://github.com/sunnyadn/comprisk#migrating-from-crforest)
for the one-line `sed` recipe and details.

## Why the rename?

`crforest` originally meant "competing-risks Random FOREST." `comprisk` is positioned
as a complete Python toolkit for competing risks — v0.3 is the random survival forest;
v0.4 adds Fine-Gray subdistribution-hazard regression, a stand-alone Aalen-Johansen
cumulative-incidence estimator, Gray's K-sample test, and cause-specific Cox PH.
The forest-only name no longer matched the package scope. See the comprisk
[Roadmap](https://github.com/sunnyadn/comprisk#roadmap).

## Pinning

| You had                  | Behaviour after the rename                                     |
|--------------------------|----------------------------------------------------------------|
| `crforest==0.3.0`        | Unaffected — gets the original 0.3.0 wheel                     |
| `crforest==0.3.0.post1`  | Gets the redirect shim; `import crforest` warns and re-exports `comprisk` |
| `crforest`               | Resolves to `0.3.0.post1` (the redirect shim)                  |
| `comprisk>=0.3.1`        | Recommended — the new home; no deprecation warning             |

## License

Apache-2.0. See [LICENSE](LICENSE).
