Skip to content

Commit

Permalink
Bump version: 0.9.2 → 1.0.0-alpha1
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin-Laurent committed Jan 23, 2025
1 parent e72dd27 commit 4f92e68
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors:
given-names: "Thibault"
orcid: "https://orcid.org/0000-0000-0000-0000"
title: "MAPIE - Model Agnostic Prediction Interval Estimator"
version: 0.9.2
version: 1.0.0-alpha1
date-released: 2019-04-30
url: "https://github.com/scikit-learn-contrib/MAPIE"
preferred-citation:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ As **MAPIE** is compatible with the standard scikit-learn API, you can see that
- How easy it is **to wrap your favorite scikit-learn-compatible model** around your model.
- How easy it is **to follow the standard sequential** ``fit`` and ``predict`` process like any scikit-learn estimator.

.. testcode::
.. code:: python
# Uncertainty quantification for regression problem
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
# built documents.
#
# The short X.Y version.
version = "0.9.2"
version = "1.0.0-alpha1"
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion mapie_v1/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.0"
__version__ = "1.0.0-alpha1"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import find_packages, setup

DISTNAME = "MAPIE"
VERSION = "0.9.2"
VERSION = "1.0.0-alpha1"
DESCRIPTION = (
"A scikit-learn-compatible module "
"for estimating prediction intervals."
Expand Down

0 comments on commit 4f92e68

Please sign in to comment.