From b670cb45a01482d0d89f0780c34aa103f55ec663 Mon Sep 17 00:00:00 2001 From: Guillaume Lemaitre Date: Mon, 24 Oct 2022 16:40:39 +0200 Subject: [PATCH 1/3] DOC add details regarding the release 1.1.3 --- doc/whats_new/v1.1.rst | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/doc/whats_new/v1.1.rst b/doc/whats_new/v1.1.rst index 952d2867360a3..35f056040b1c5 100644 --- a/doc/whats_new/v1.1.rst +++ b/doc/whats_new/v1.1.rst @@ -2,6 +2,30 @@ .. currentmodule:: sklearn +.. _changes_1_1_3: + +Version 1.1.3 +============= + +**October 2022** + +This bugfix release only includes fixes for compatibility with the latest +SciPy release >= 1.9.2. Notable changes include: + +- |Fix| Include `msvcp140.dll` in the scikit-learn wheels since it has been + removed in the latest SciPy wheels. + :pr:`24631` by :user:`Chiara Marmo `. + +- |Enhancement| Create wheels for Python 3.11. + :pr:`24446` by :user:`Chiara Marmo `. + +- |Fix| Warn about source build issues with Windows 32 bit and 32 bit + Python interpreter with recent SciPy versions. + :pr:`24742` and :pr:`24743` by :user:`Guillaume Lemaitre `. + +Other bug fixes will be available in the next 1.2 release, which will be +released in the coming weeks. + .. _changes_1_1_2: Version 1.1.2 From f48512834f5e66be165903b01b76c0bb068c29a7 Mon Sep 17 00:00:00 2001 From: Guillaume Lemaitre Date: Mon, 24 Oct 2022 16:43:13 +0200 Subject: [PATCH 2/3] FIX mention compatibility with Python 3.11 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index cc5b6f11749cb..6004bf127a334 100755 --- a/setup.py +++ b/setup.py @@ -326,6 +326,7 @@ def setup_package(): "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ], From d726970e24eac4c5509367d8525d8c17c826199a Mon Sep 17 00:00:00 2001 From: Guillaume Lemaitre Date: Wed, 26 Oct 2022 11:35:06 +0200 Subject: [PATCH 3/3] DOC remove unused entry --- doc/whats_new/v1.1.rst | 4 ---- 1 file changed, 4 deletions(-) diff --git a/doc/whats_new/v1.1.rst b/doc/whats_new/v1.1.rst index 35f056040b1c5..bc4c4f5e955ce 100644 --- a/doc/whats_new/v1.1.rst +++ b/doc/whats_new/v1.1.rst @@ -19,10 +19,6 @@ SciPy release >= 1.9.2. Notable changes include: - |Enhancement| Create wheels for Python 3.11. :pr:`24446` by :user:`Chiara Marmo `. -- |Fix| Warn about source build issues with Windows 32 bit and 32 bit - Python interpreter with recent SciPy versions. - :pr:`24742` and :pr:`24743` by :user:`Guillaume Lemaitre `. - Other bug fixes will be available in the next 1.2 release, which will be released in the coming weeks.