Skip to content

Commit

Permalink
REL: set version to 1.9.0.dev0
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerjereddy committed Dec 7, 2021
1 parent d27d186 commit d5130e7
Show file tree
Hide file tree
Showing 5 changed files with 134 additions and 3 deletions.
129 changes: 129 additions & 0 deletions doc/release/1.9.0-notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
==========================
SciPy 1.9.0 Release Notes
==========================

.. note:: Scipy 1.9.0 is not released yet!

.. contents::

SciPy 1.9.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.9.x branch, and on adding new features on the master branch.

This release requires Python 3.8+ and NumPy 1.17.3 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.9.0
***********************


***********************
Pull requests for 1.9.0
***********************

1 change: 1 addition & 0 deletions doc/source/release.1.9.0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. include:: ../release/1.9.0-notes.rst
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.9.0
release.1.8.0
release.1.7.3
release.1.7.2
Expand Down
4 changes: 2 additions & 2 deletions pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@
#-----------------------------------

# Source of the release notes
RELEASE = 'doc/release/1.8.0-notes.rst'
RELEASE = 'doc/release/1.9.0-notes.rst'

# Start/end of the log (from git)
LOG_START = 'v1.7.0'
LOG_START = 'v1.8.0'
LOG_END = 'master'


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"""

MAJOR = 1
MINOR = 8
MINOR = 9
MICRO = 0
ISRELEASED = False
IS_RELEASE_BRANCH = False
Expand Down

0 comments on commit d5130e7

Please sign in to comment.