Skip to content

Commit e70ae56

Browse files
authored
MNT Bump version to 1.8.dev0 on main (scikit-learn#31336)
1 parent ffcd361 commit e70ae56

File tree

4 files changed

+37
-2
lines changed

4 files changed

+37
-2
lines changed

doc/whats_new.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Changelogs and release notes for all scikit-learn releases are linked in this pa
1515
.. toctree::
1616
:maxdepth: 2
1717

18+
whats_new/v1.8.rst
1819
whats_new/v1.7.rst
1920
whats_new/v1.6.rst
2021
whats_new/v1.5.rst

doc/whats_new/v1.8.rst

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
.. include:: _contributors.rst
2+
3+
.. currentmodule:: sklearn
4+
5+
.. _release_notes_1_8:
6+
7+
===========
8+
Version 1.8
9+
===========
10+
11+
..
12+
-- UNCOMMENT WHEN 1.8.0 IS RELEASED --
13+
For a short description of the main highlights of the release, please refer to
14+
:ref:`sphx_glr_auto_examples_release_highlights_plot_release_highlights_1_7_0.py`.
15+
16+
17+
..
18+
DELETE WHEN 1.8.0 IS RELEASED
19+
Since October 2024, DO NOT add your changelog entry in this file.
20+
..
21+
Instead, create a file named `<PR_NUMBER>.<TYPE>.rst` in the relevant sub-folder in
22+
`doc/whats_new/upcoming_changes/`. For full details, see:
23+
https://github.com/scikit-learn/scikit-learn/blob/main/doc/whats_new/upcoming_changes/README.md
24+
25+
.. include:: changelog_legend.inc
26+
27+
.. towncrier release notes start
28+
29+
.. rubric:: Code and documentation contributors
30+
31+
Thanks to everyone who has contributed to the maintenance and improvement of
32+
the project since version 1.7, including:
33+
34+
TODO: update at the time of the release.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ ignore-words = "build_tools/codespell_ignore_words.txt"
281281

282282
[tool.towncrier]
283283
package = "sklearn"
284-
filename = "doc/whats_new/v1.7.rst"
284+
filename = "doc/whats_new/v1.8.rst"
285285
single_file = true
286286
directory = "doc/whats_new/upcoming_changes"
287287
issue_format = ":pr:`{issue}`"

sklearn/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
4343
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
4444
#
45-
__version__ = "1.7.dev0"
45+
__version__ = "1.8.dev0"
4646

4747

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

0 commit comments

Comments
 (0)