Skip to content

Commit 6dc84d9

Browse files
Merge branch 'master' into master
2 parents d6ed656 + 4c25001 commit 6dc84d9

20 files changed

+1073
-142
lines changed

.bumpversion.cfg

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.8.3
2+
current_version = 0.8.6
33
commit = True
44
tag = True
55

@@ -16,6 +16,5 @@ search = version = "{current_version}"
1616
replace = version = "{new_version}"
1717

1818
[bumpversion:file:CITATION.cff]
19-
search = version = "{current_version}"
20-
replace = version = "{new_version}"
21-
19+
search = version: {current_version}
20+
replace = version: {new_version}

AUTHORS.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,5 @@ Contributors
4040
* Pierre de Fréminville <pidefrem>
4141
* Ambros Marzetta <ambrosm>
4242
* Carl McBride Ellis <Carl-McBride-Ellis>
43+
* Baptiste Calot <[email protected]>
4344
To be continued ...

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors:
55
given-names: "Thibault"
66
orcid: "https://orcid.org/0000-0000-0000-0000"
77
title: "MAPIE - Model Agnostic Prediction Interval Estimator"
8-
version: 0.8.3
8+
version: 0.8.6
99
date-released: 2019-04-30
1010
url: "https://github.com/scikit-learn-contrib/MAPIE"
1111
preferred-citation:

HISTORY.rst

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,27 @@
22
History
33
=======
44

5-
0.8.3 (2024-**-**)
5+
0.8.x (2024-xx-xx)
66
------------------
77

8+
* Building a training set with a fraction between 0 and 1 with `n_samples` attribute when using `split` method from `Subsample` class.
9+
10+
0.8.6 (2024-06-14)
11+
------------------
12+
13+
* Fix the quantile formula to ensure valid coverage (deal with infinite interval production and asymmetric conformal scores).
14+
* Fix sphinx dependencies
15+
16+
0.8.5 (2024-06-07)
17+
------------------
18+
19+
* Issue with update from 0.8.4
20+
21+
0.8.4 (2024-06-07)
22+
------------------
23+
24+
* Fix the quantile formula to ensure valid coverage for any number of calibration data in `ConformityScore`.
25+
* Fix overloading of the value of the `method` attribute when using `MapieRegressor` and `MapieTimeSeriesRegressor`.
826
* Fix conda versionning.
927
* Reduce precision for test in `MapieCalibrator`.
1028
* Fix invalid certificate when downloading data.

README.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
|GitHubActions| |Codecov| |ReadTheDocs| |License| |PythonVersion| |PyPi| |Conda| |Release| |Commits| |DOI|
44

55
.. |GitHubActions| image:: https://github.com/scikit-learn-contrib/MAPIE/actions/workflows/test.yml/badge.svg
6-
:target: https://github.com/scikit-learn-contrib/MAPIE/actions
6+
:target: https://github.com/scikit-learn-contrib/MAPIE/actions
77

88
.. |Codecov| image:: https://codecov.io/gh/scikit-learn-contrib/MAPIE/branch/master/graph/badge.svg?token=F2S6KYH4V1
99
:target: https://codecov.io/gh/scikit-learn-contrib/MAPIE
@@ -13,25 +13,25 @@
1313
:alt: Documentation Status
1414

1515
.. |License| image:: https://img.shields.io/github/license/scikit-learn-contrib/MAPIE
16-
:target: https://github.com/scikit-learn-contrib/MAPIE/blob/master/LICENSE
16+
:target: https://github.com/scikit-learn-contrib/MAPIE/blob/master/LICENSE
1717

1818
.. |PythonVersion| image:: https://img.shields.io/pypi/pyversions/mapie
19-
:target: https://pypi.org/project/mapie/
19+
:target: https://pypi.org/project/mapie/
2020

2121
.. |PyPi| image:: https://img.shields.io/pypi/v/mapie
22-
:target: https://pypi.org/project/mapie/
22+
:target: https://pypi.org/project/mapie/
2323

2424
.. |Conda| image:: https://img.shields.io/conda/vn/conda-forge/mapie
25-
:target: https://anaconda.org/conda-forge/mapie
25+
:target: https://anaconda.org/conda-forge/mapie
2626

2727
.. |Release| image:: https://img.shields.io/github/v/release/scikit-learn-contrib/mapie
28-
:target: https://github.com/scikit-learn-contrib/MAPIE/releases
28+
:target: https://github.com/scikit-learn-contrib/MAPIE/releases
2929

3030
.. |Commits| image:: https://img.shields.io/github/commits-since/scikit-learn-contrib/mapie/latest/master
31-
:target: https://github.com/scikit-learn-contrib/MAPIE/commits/master
31+
:target: https://github.com/scikit-learn-contrib/MAPIE/commits/master
3232

3333
.. |DOI| image:: https://img.shields.io/badge/10.48550/arXiv.2207.12274-B31B1B.svg
34-
:target: https://arxiv.org/abs/2207.12274
34+
:target: https://arxiv.org/abs/2207.12274
3535

3636
.. image:: https://github.com/scikit-learn-contrib/MAPIE/raw/master/doc/images/mapie_logo_nobg_cut.png
3737
:width: 400

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
# built documents.
8989
#
9090
# The short X.Y version.
91-
version = "0.8.3"
91+
version = "0.8.6"
9292
# The full version, including alpha/beta/rc tags.
9393
release = version
9494

environment.doc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies:
88
- pandas=1.3.5
99
- python=3.10
1010
- scikit-learn
11-
- sphinx=4.3.2
11+
- sphinx=5.3.0
1212
- sphinx-gallery=0.10.1
1313
- sphinx_rtd_theme=1.0.0
14-
- typing_extensions=4.0.1
14+
- typing_extensions=4.0.1

0 commit comments

Comments
 (0)