Skip to content

MNT bumb version number to 1.1 #20945

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on libraries.io to be notified when new versions are released.
.. toctree::
:maxdepth: 1

Version 1.1 <whats_new/v1.1.rst>
Version 1.0 <whats_new/v1.0.rst>
Version 0.24 <whats_new/v0.24.rst>
Version 0.23 <whats_new/v0.23.rst>
Expand Down
2 changes: 1 addition & 1 deletion doc/whats_new/v1.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Version 1.0.0
=============

**In Development**
**September 2021**


.. include:: changelog_legend.inc
Expand Down
52 changes: 52 additions & 0 deletions doc/whats_new/v1.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
.. include:: _contributors.rst

.. currentmodule:: sklearn

.. _changes_1_1:

Version 1.1.0
=============

**In Development**


.. include:: changelog_legend.inc

Minimal dependencies
--------------------

Version 1.1.0 of scikit-learn requires python 3.7+, numpy 1.14.6+ and
scipy 1.1.0+. Optional minimal dependency is matplotlib 2.2.2+.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do we only state matplotlib or pandas and co. to be able to run the examples?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Technically all those are optional dependencies, so it's unclear where we put the limit. I'm fine with the current version and also fine with adding pandas.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I also thought about that, but as far as it goes for the library, and not the examples, we only consume pandas, whereas we actually use matplotlib. So I figured I'm happy with having matplotlib here but not pandas. Once we give pandas as output, then we'd need to have it here.


Put the changes in their relevant module.

Changed models
--------------


Changelog
---------

..
Entries should be grouped by module (in alphabetic order) and prefixed with
one of the labels: |MajorFeature|, |Feature|, |Efficiency|, |Enhancement|,
|Fix| or |API| (see whats_new.rst for descriptions).
Entries should be ordered by those labels (e.g. |Fix| after |Efficiency|).
Changes not specific to a module should be listed under *Multiple Modules*
or *Miscellaneous*.
Entries should end with:
:pr:`123456` by :user:`Joe Bloggs <joeongithub>`.
where 123456 is the *pull request* number, not the issue number.


:mod:`sklearn.decomposition`
............................


Code and Documentation Contributors
-----------------------------------

Thanks to everyone who has contributed to the maintenance and improvement of
the project since version 1.0, including:

TODO: update at the time of the release.
2 changes: 1 addition & 1 deletion sklearn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
#
__version__ = "1.0.dev0"
__version__ = "1.1.dev0"


# On OSX, we can get a runtime error due to multiple OpenMP libraries loaded
Expand Down