8000 DOC: Add missing release fragments to ``upcoming_changes``. by charris · Pull Request #17823 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

DOC: Add missing release fragments to upcoming_changes. #17823

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Nov 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions doc/release/upcoming_changes/15121.new_function.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
The random.Generator class has a new ``permuted`` function.
-----------------------------------------------------------
The new function differs from ``shuffle`` and ``permutation`` in that the
subarrays indexed by an axis are permuted rather than the axis being treated as
a separate 1-D array for every combination of the other indexes. For example,
it is now possible to permute the rows or columns of a 2-D array.
4 changes: 4 additions & 0 deletions doc/release/upcoming_changes/16570.compatibility.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
The ``operator.concat`` function now raises TypeError for array arguments
-------------------------------------------------------------------------
The previous behavior was to fall back to addition and add the two arrays,
which was thought to be unexpected behavior for a concatenation function.
4 changes: 4 additions & 0 deletions doc/release/upcoming_changes/16594.new_feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
New``__f2py_numpy_version__`` attribute for f2py generated modules.
-------------------------------------------------------------------
Because f2py is released together with NumPy, ``__f2py_numpy_version__``
provides a way to track the version f2py used to generate the module.
3 changes: 3 additions & 0 deletions doc/release/upcoming_changes/16710.improvement.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
RPATH support on AIX added to distutils
---------------------------------------
This allows SciPy to be built on AIX.
12 changes: 12 additions & 0 deletions doc/release/upcoming_changes/17123.new_feature.rst
8000
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
``mypy`` tests can be run via runtests.py
-----------------------------------------
Currently running mypy with the NumPy stubs configured requires
either:

* Installing NumPy
* Adding the source directory to MYPYPATH and linking to the mypy.ini

Both options are somewhat inconvenient, so add a ``--mypy`` option to runtests
that handles setting things up for you. This will also be useful in the future
for any typing codegen since it will ensure the project is built before type
checking.
5 changes: 5 additions & 0 deletions doc/release/upcoming_changes/17195.improvement.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Make the window functions exactly symmetric
-------------------------------------------
Make sure the window functions provided by NumPy are symmetric. There were
previously small deviations from symmetry due to numerical precision that are
now avoided by better arrangement of the computation.
6 changes: 6 additions & 0 deletions doc/release/upcoming_changes/17284.new_feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Allow passing optimizations arguments to asv build
--------------------------------------------------
It is now possible to pass ``-j``, ``--cpu-baseline``, ``--cpu-dispatch`` and
``--disable-optimization`` flags to ASV build when the ``--bench-compare``
argument is used.

3 changes: 3 additions & 0 deletions doc/release/upcoming_changes/17344.new_feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
The NVIDIA HPC SDK nvfortran compiler is now supported
------------------------------------------------------
Support for the nvfortran compiler, a version of pgfortran, has been added.
9 changes: 8 additions & 1 deletion 879A release_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,15 @@

# download-wheels.py
urllib3
beatifulsoup4
beautifulsoup4

# changelog.py
pygithub
gitpython

# uploading wheels
twine

# building and notes
Paver
towncrier
0