Skip to content

Commit

Permalink
Merge pull request scipy#18575 from tylerjereddy/treddy_112_prep
Browse files Browse the repository at this point in the history
REL: set version to 1.12.0.dev0
  • Loading branch information
tylerjereddy committed May 29, 2023
2 parents d0510af + c0dedbc commit 05c4cff
Show file tree
Hide file tree
Showing 4 changed files with 132 additions and 2 deletions.
1 change: 1 addition & 0 deletions doc/source/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ see the `commit logs <https://github.com/scipy/scipy/commits/>`_.
.. toctree::
:maxdepth: 1

release/1.12.0-notes
release/1.11.0-notes
release/1.10.1-notes
release/1.10.0-notes
Expand Down
129 changes: 129 additions & 0 deletions doc/source/release/1.12.0-notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
==========================
SciPy 1.12.0 Release Notes
==========================

.. note:: SciPy 1.12.0 is not released yet!

.. contents::

SciPy 1.12.0 is the culmination of X months of hard work. It contains
many new features, numerous bug-fixes, improved test coverage and better
documentation. There have been a number of deprecations and API changes
in this release, which are documented below. All users are encouraged to
upgrade to this release, as there are a large number of bug-fixes and
optimizations. Before upgrading, we recommend that users check that
their own code does not use deprecated SciPy functionality (to do so,
run your code with ``python -Wd`` and check for ``DeprecationWarning`` s).
Our development attention will now shift to bug-fix releases on the
1.12.x branch, and on adding new features on the main branch.

This release requires Python 3.9+ and NumPy 1.21.6 or greater.

For running on PyPy, PyPy3 6.0+ is required.


**************************
Highlights of this release
**************************


************
New features
************

`scipy.cluster` improvements
============================


`scipy.interpolate` improvements
================================


`scipy.linalg` improvements
===========================


`scipy.ndimage` improvements
============================


`scipy.optimize` improvements
=============================


`scipy.signal` improvements
===========================


`scipy.sparse` improvements
===========================



`scipy.spatial` improvements
============================


`scipy.special` improvements
============================


`scipy.stats` improvements
==========================

Hypothesis Tests
----------------


Sample statistics
-----------------


Statistical Distributions
-------------------------


Other
-----




*******************
Deprecated features
*******************

`scipy.linalg` deprecations
===========================


`scipy.spatial` deprecations
============================



******************************
Backwards incompatible changes
******************************

*************
Other changes
*************



*******
Authors
*******



************************
Issues closed for 1.12.0
************************


************************
Pull requests for 1.12.0
************************

2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ project(
# Note that the git commit hash cannot be added dynamically here (it is added
# in the dynamically generated and installed `scipy/version.py` though - see
# tools/version_utils.py
version: '1.11.0.dev0',
version: '1.12.0.dev0',
license: 'BSD-3',
meson_version: '>= 1.1.0',
default_options: [
Expand Down
2 changes: 1 addition & 1 deletion tools/version_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


MAJOR = 1
MINOR = 11
MINOR = 12
MICRO = 0
ISRELEASED = False
IS_RELEASE_BRANCH = False
Expand Down

0 comments on commit 05c4cff

Please sign in to comment.