Skip to content

Commit

Permalink
Merge pull request scipy#10185 from tylerjereddy/scipy-130-rel-prep
Browse files Browse the repository at this point in the history
MAINT: 1.3.0 prep / safe backport
  • Loading branch information
tylerjereddy authored May 16, 2019
2 parents 80b786a + e1cfc5b commit ac7dce3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
11 changes: 9 additions & 2 deletions doc/release/1.3.0-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
SciPy 1.3.0 Release Notes
==========================

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

.. contents::

SciPy 1.3.0 is the culmination of 5 months of hard work. It contains
Expand Down Expand Up @@ -204,6 +202,15 @@ can be used to track the new import locations for the relocated functions.
For ``pinv``, ``pinv2``, and ``pinvh``, the default cutoff values are changed
for consistency (see the docs for the actual values).

`scipy.optimize` changes
---------------------------

The default method for ``linprog`` is now ``'interior-point'``. The method's
robustness and speed come at a cost: solutions may not be accurate to
machine precision or correspond with a vertex of the polytope defined
by the constraints. To revert to the original simplex method,
include the argument ``method='simplex'``.

`scipy.stats` changes
---------------------

Expand Down
2 changes: 1 addition & 1 deletion scipy/stats/tests/test_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ def test_more_basic_examples(self):

# The expected r and p are exact.
assert_allclose(r, -1.0)
assert_allclose(p, 0.0)
assert_allclose(p, 0.0, atol=1e-7)

def test_unequal_lengths(self):
x = [1, 2, 3]
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
MAJOR = 1
MINOR = 3
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 ac7dce3

Please sign in to comment.