Skip to content

Commit

Permalink
Merge pull request #24722 from charris/prepare-1.26.0-release
Browse files Browse the repository at this point in the history
REL: Prepare for the NumPy 1.26.0 release
  • Loading branch information
charris committed Sep 16, 2023
2 parents c550abf + 2f7c195 commit d35cd07
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 7 deletions.
14 changes: 12 additions & 2 deletions doc/changelog/1.26.0-changelog.rst
Expand Up @@ -2,15 +2,17 @@
Contributors
============

A total of 18 people contributed to this release. People with a "+" by their
A total of 20 people contributed to this release. People with a "+" by their
names contributed a patch for the first time.

* @DWesl
* Albert Steppi +
* Bas van Beek
* Charles Harris
* Developer-Ecosystem-Engineering
* Filipe Laíns +
* Jake Vanderplas
* Liang Yan +
* Marten van Kerkwijk
* Matti Picus
* Melissa Weber Mendonça
Expand All @@ -27,7 +29,7 @@ names contributed a patch for the first time.
Pull requests merged
====================

A total of 51 pull requests were merged for this release.
A total of 59 pull requests were merged for this release.

* `#24305 <https://github.com/numpy/numpy/pull/24305>`__: MAINT: Prepare 1.26.x branch for development
* `#24308 <https://github.com/numpy/numpy/pull/24308>`__: MAINT: Massive update of files from main for numpy 1.26
Expand Down Expand Up @@ -80,3 +82,11 @@ A total of 51 pull requests were merged for this release.
* `#24638 <https://github.com/numpy/numpy/pull/24638>`__: MAINT: Bump actions/checkout from 3.6.0 to 4.0.0
* `#24647 <https://github.com/numpy/numpy/pull/24647>`__: ENH: ``meson`` backend for ``f2py``
* `#24648 <https://github.com/numpy/numpy/pull/24648>`__: MAINT: Refactor partial load Workaround for Clang
* `#24653 <https://github.com/numpy/numpy/pull/24653>`__: REL: Prepare for the NumPy 1.26.0rc1 release.
* `#24659 <https://github.com/numpy/numpy/pull/24659>`__: BLD: allow specifying the long double format to avoid the runtime...
* `#24665 <https://github.com/numpy/numpy/pull/24665>`__: BLD: fix bug in random.mtrand extension, don't link libnpyrandom
* `#24675 <https://github.com/numpy/numpy/pull/24675>`__: BLD: build wheels for 32-bit Python on Windows, using MSVC
* `#24700 <https://github.com/numpy/numpy/pull/24700>`__: BLD: fix issue with compiler selection during cross compilation
* `#24701 <https://github.com/numpy/numpy/pull/24701>`__: BUG: Fix data stmt handling for complex values in f2py
* `#24707 <https://github.com/numpy/numpy/pull/24707>`__: TYP: Add annotations for the py3.12 buffer protocol
* `#24718 <https://github.com/numpy/numpy/pull/24718>`__: DOC: fix a few doc build issues on 1.26.x and update `spin docs`...
15 changes: 13 additions & 2 deletions doc/source/release/1.26.0-notes.rst
Expand Up @@ -22,6 +22,7 @@ The highlights of this release are:
- Use of the Meson build system
- Updated SIMD support
- f2py fixes, meson and bind(x) support
- Support for the updated Accelerate BLAS/LAPACK library

The Python versions supported in this release are 3.9-3.12.

Expand Down Expand Up @@ -145,15 +146,17 @@ therefore would like to see all potential blockers surfaced early on in the
Contributors
============

A total of 18 people contributed to this release. People with a "+" by their
A total of 20 people contributed to this release. People with a "+" by their
names contributed a patch for the first time.

* @DWesl
* Albert Steppi +
* Bas van Beek
* Charles Harris
* Developer-Ecosystem-Engineering
* Filipe Laíns +
* Jake Vanderplas
* Liang Yan +
* Marten van Kerkwijk
* Matti Picus
* Melissa Weber Mendonça
Expand All @@ -171,7 +174,7 @@ names contributed a patch for the first time.
Pull requests merged
====================

A total of 51 pull requests were merged for this release.
A total of 59 pull requests were merged for this release.

* `#24305 <https://github.com/numpy/numpy/pull/24305>`__: MAINT: Prepare 1.26.x branch for development
* `#24308 <https://github.com/numpy/numpy/pull/24308>`__: MAINT: Massive update of files from main for numpy 1.26
Expand Down Expand Up @@ -224,3 +227,11 @@ A total of 51 pull requests were merged for this release.
* `#24638 <https://github.com/numpy/numpy/pull/24638>`__: MAINT: Bump actions/checkout from 3.6.0 to 4.0.0
* `#24647 <https://github.com/numpy/numpy/pull/24647>`__: ENH: ``meson`` backend for ``f2py``
* `#24648 <https://github.com/numpy/numpy/pull/24648>`__: MAINT: Refactor partial load Workaround for Clang
* `#24653 <https://github.com/numpy/numpy/pull/24653>`__: REL: Prepare for the NumPy 1.26.0rc1 release.
* `#24659 <https://github.com/numpy/numpy/pull/24659>`__: BLD: allow specifying the long double format to avoid the runtime...
* `#24665 <https://github.com/numpy/numpy/pull/24665>`__: BLD: fix bug in random.mtrand extension, don't link libnpyrandom
* `#24675 <https://github.com/numpy/numpy/pull/24675>`__: BLD: build wheels for 32-bit Python on Windows, using MSVC
* `#24700 <https://github.com/numpy/numpy/pull/24700>`__: BLD: fix issue with compiler selection during cross compilation
* `#24701 <https://github.com/numpy/numpy/pull/24701>`__: BUG: Fix data stmt handling for complex values in f2py
* `#24707 <https://github.com/numpy/numpy/pull/24707>`__: TYP: Add annotations for the py3.12 buffer protocol
* `#24718 <https://github.com/numpy/numpy/pull/24718>`__: DOC: fix a few doc build issues on 1.26.x and update `spin docs`...
1 change: 0 additions & 1 deletion numpy/f2py/__init__.pyi
Expand Up @@ -14,7 +14,6 @@ class _F2PyDict(_F2PyDictBase, total=False):
ltx: list[str]

__all__: list[str]
__path__: list[str]
test: PytestTester

def run_main(comline_list: Iterable[str]) -> dict[str, _F2PyDict]: ...
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -17,7 +17,7 @@ requires = [

[project]
name = "numpy"
version = "1.26.0rc1"
version = "1.26.0"
# TODO: add `license-files` once PEP 639 is accepted (see meson-python#88)
license = {file = "LICENSE.txt"}

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml.setuppy
Expand Up @@ -3,7 +3,7 @@
# to avoid building with Meson (e.g., in the Emscripten/Pyodide CI job)
[project]
name = "numpy"
version = "1.26.0rc1"
version = "1.26.0"

[build-system]
requires = [
Expand Down

0 comments on commit d35cd07

Please sign in to comment.