Skip to content

Commit 44afae4

Browse files
authored
Merge pull request #442 from scikit-learn-contrib/400-create-citations-using-github
400 create citations using GitHub
2 parents 6dc05a8 + 88adb73 commit 44afae4

File tree

4 files changed

+64
-4
lines changed

4 files changed

+64
-4
lines changed

.bumpversion.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,8 @@ replace = __version__ = "{new_version}"
1414
[bumpversion:file:doc/conf.py]
1515
search = version = "{current_version}"
1616
replace = version = "{new_version}"
17+
18+
[bumpversion:file:CITATION.cff]
19+
search = version = "{current_version}"
20+
replace = version = "{new_version}"
21+

CITATION.cff

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
cff-version: 1.2.0
2+
message: "If you use this software, please cite it as below."
3+
authors:
4+
- family-names: "Cordier"
5+
given-names: "Thibault"
6+
orcid: "https://orcid.org/0000-0000-0000-0000"
7+
title: "MAPIE - Model Agnostic Prediction Interval Estimator"
8+
version: 0.8.3
9+
date-released: 2019-04-30
10+
url: "https://github.com/scikit-learn-contrib/MAPIE"
11+
preferred-citation:
12+
type: conference-paper
13+
title: "Flexible and Systematic Uncertainty Estimation with Conformal Prediction via the MAPIE library"
14+
authors:
15+
- family-names: "Cordier"
16+
given-names: "Thibault"
17+
- family-names: "Blot"
18+
given-names: "Vincent"
19+
- family-names: "Lacombe"
20+
given-names: "Louis"
21+
- family-names: "Morzadec"
22+
given-names: "Thomas"
23+
- family-names: "Capitaine"
24+
given-names: "Arnaud"
25+
- family-names: "Brunel"
26+
given-names: "Nicolas"
27+
collection-title: "Conformal and Probabilistic Prediction with Applications"
28+
collection-type: proceedings
29+
pages: "549--581"
30+
year: 2023
31+
organization: "PMLR"
32+
old-citation:
33+
type: article
34+
authors:
35+
- family-names: "Taquet"
36+
given-names: "Vianney"
37+
- family-names: "Blot"
38+
given-names: "Vincent"
39+
- family-names: "Morzadec"
40+
given-names: "Thomas"
41+
- family-names: "Lacombe"
42+
given-names: "Louis"
43+
- family-names: "Brunel"
44+
given-names: "Nicolas"
45+
doi: "10.48550/arXiv.2207.12274"
46+
journal: "arXiv preprint arXiv:2207.12274"
47+
title: "MAPIE: an open-source library for distribution-free uncertainty quantification"
48+
year: 2021

HISTORY.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ History
88
* Fix conda versionning.
99
* Reduce precision for test in `MapieCalibrator`.
1010
* Fix invalid certificate when downloading data.
11+
* Add citations utility to the documentation.
1112

1213
0.8.3 (2024-03-01)
1314
------------------

README.rst

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
:target: https://mapie.readthedocs.io/en/stable/?badge=stable
1313
:alt: Documentation Status
1414

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

1818
.. |PythonVersion| image:: https://img.shields.io/pypi/pyversions/mapie
@@ -33,7 +33,7 @@
3333
.. |DOI| image:: https://img.shields.io/badge/10.48550/arXiv.2207.12274-B31B1B.svg
3434
:target: https://arxiv.org/abs/2207.12274
3535

36-
.. image:: https://github.com/simai-ml/MAPIE/raw/master/doc/images/mapie_logo_nobg_cut.png
36+
.. image:: https://github.com/scikit-learn-contrib/MAPIE/raw/master/doc/images/mapie_logo_nobg_cut.png
3737
:width: 400
3838
:align: center
3939

@@ -158,7 +158,7 @@ The full documentation can be found `on this link <https://mapie.readthedocs.io/
158158
===============
159159

160160
You are welcome to propose and contribute new ideas.
161-
We encourage you to `open an issue <https://github.com/simai-ml/MAPIE/issues>`_ so that we can align on the work to be done.
161+
We encourage you to `open an issue <https://github.com/scikit-learn-contrib/MAPIE/issues>`_ so that we can align on the work to be done.
162162
It is generally a good idea to have a quick discussion before opening a pull request that is potentially out-of-scope.
163163
For more information on the contribution process, please go `here <CONTRIBUTING.rst>`_.
164164

@@ -223,4 +223,10 @@ and with the financial support from Région Ile de France and Confiance.ai.
223223
📝 License
224224
==========
225225

226-
MAPIE is free and open-source software licensed under the `3-clause BSD license <https://github.com/simai-ml/MAPIE/blob/master/LICENSE>`_.
226+
MAPIE is free and open-source software licensed under the `3-clause BSD license <LICENSE>`_.
227+
228+
229+
📚 Citation
230+
===========
231+
232+
If you use MAPIE in your research, please cite using `citations file <CITATION.cff>`_ on our repository.

0 commit comments

Comments
 (0)