Skip to content

Commit

Permalink
MAINT: prepare for 1.6.0 final
Browse files Browse the repository at this point in the history
* update the `1.6.0` release notes after the backporting of scipygh-13255
(the patch proper, but not the testing changes--see comments there)
and to remove the "Note" about `1.6.0` not being released yet

* bump the version to `1.6.0` "final" (removing the rc2)
unreleased
  • Loading branch information
tylerjereddy committed Dec 30, 2020
1 parent ff1fb19 commit 74fcaa6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions doc/release/1.6.0-notes.rst
Expand Up @@ -2,8 +2,6 @@
SciPy 1.6.0 Release Notes
==========================

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

.. contents::

SciPy 1.6.0 is the culmination of 6 months of hard work. It contains
Expand Down Expand Up @@ -591,6 +589,7 @@ Issues closed for 1.6.0
* `#13191 <https://github.com/scipy/scipy/issues/13191>`__: \`scipy.linalg.lapack.dgesjv\` overwrites original arrays if...
* `#13207 <https://github.com/scipy/scipy/issues/13207>`__: TST: Erratic test failure in test_cossin_separate
* `#13221 <https://github.com/scipy/scipy/issues/13221>`__: BUG: pavement.py glitch
* `#13239 <https://github.com/scipy/scipy/issues/13239>`__: Segmentation fault with \`eigh(..., driver="evx")\` for 10x10...
* `#13248 <https://github.com/scipy/scipy/issues/13248>`__: ndimage: improper cval handling for complex-valued inputs

Pull requests for 1.6.0
Expand Down Expand Up @@ -938,5 +937,7 @@ Pull requests for 1.6.0
* `#13226 <https://github.com/scipy/scipy/pull/13226>`__: BUG: pavement.py file handle fixes
* `#13249 <https://github.com/scipy/scipy/pull/13249>`__: Handle cval correctly for ndimage functions with complex-valued...
* `#13253 <https://github.com/scipy/scipy/pull/13253>`__: BUG,MAINT: Ensure all Pool objects are closed
* `#13255 <https://github.com/scipy/scipy/pull/13255>`__: BUG:linalg: Fix heevx wrappers and add new tests
* `#13260 <https://github.com/scipy/scipy/pull/13260>`__: CI: fix macOS testing
* `#13269 <https://github.com/scipy/scipy/pull/13269>`__: CI: github actions: In the linux dbg tests, update apt before...
* `#13279 <https://github.com/scipy/scipy/pull/13279>`__: MAINT: 1.6.0 rc2 backports
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -56,8 +56,8 @@
MAJOR = 1
MINOR = 6
MICRO = 0
ISRELEASED = True
VERSION = '%d.%d.%drc2' % (MAJOR, MINOR, MICRO)
ISRELEASED = False
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)


# Return the git revision as a string
Expand Down

0 comments on commit 74fcaa6

Please sign in to comment.