-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into fix-resid-double-sq
- Loading branch information
Showing
15 changed files
with
965 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# The file specifies framework level core developers for automated review requests | ||
# | ||
# Note: historically, this file has been used to maintain a list of | ||
# algorithm maintainers as specified in GOVERNANCE.md. | ||
# This is no longer the case, algorithm maintainers are now | ||
# specified directly in the estimator, | ||
# in the "maintainers" tag of the respective scikit-base object. | ||
# | ||
# Algorithm maintainers are programmatically queryable | ||
# via Estimator.get_class_tag("maintainers"). | ||
# Further lookup such as "which algorithms does M maintain" | ||
# can be carried out using registry.all_estimators | ||
|
||
* @achieveordie @benheid @fkiraly @fnhirwa @geetu040 @pranavvp16 @sairevanth25 @XinyuWuu @yarnabrina |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[project] | ||
name = "skpro" | ||
version = "2.7.0" | ||
version = "2.8.0" | ||
description = "A unified framework for tabular probabilistic regression, time-to-event prediction, and probability distributions in python" | ||
authors = [ | ||
{name = "skpro developers", email = "[email protected]"}, | ||
|
@@ -42,7 +42,7 @@ dependencies = [ | |
"numpy>=1.21.0,<2.2", | ||
"pandas>=1.1.0,<2.3.0", | ||
"packaging", | ||
"scikit-base>=0.6.1,<0.12.0", | ||
"scikit-base>=0.6.1,<0.13.0", | ||
"scikit-learn>=0.24.0,<1.6.0", | ||
"scipy<2.0.0,>=1.2.0", | ||
] | ||
|
@@ -57,6 +57,7 @@ all_extras = [ | |
"ngboost<0.6.0; python_version < '3.13'", | ||
"polars<1.14.0", | ||
"pyarrow<14.0.0; python_version < '3.12'", | ||
"pymc; python_version < '3.13'", | ||
"scikit-survival<0.24.0; python_version < '3.13'", | ||
"statsmodels>=0.12.1", | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
"""skpro.""" | ||
|
||
__version__ = "2.7.0" | ||
__version__ = "2.8.0" | ||
|
||
__all__ = ["show_versions"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.