Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] python3-numpy: update to 1.26.0.
@ 2023-09-22 14:15 ahesford
  2023-09-23 14:00 ` tornaria
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: ahesford @ 2023-09-22 14:15 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 427 bytes --]

There is a new pull request by ahesford against master on the void-packages repository

https://github.com/ahesford/void-packages numpy
https://github.com/void-linux/void-packages/pull/46185

python3-numpy: update to 1.26.0.
#### Testing the changes
- I tested the changes in this PR: **YES**

@tornaria Please test with sagemath.


A patch file from https://github.com/void-linux/void-packages/pull/46185.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-numpy-46185.patch --]
[-- Type: text/x-diff, Size: 1115 bytes --]

From b4be3c8666f6bdb8eb01024a8d98b0e05cd67ed7 Mon Sep 17 00:00:00 2001
From: "Andrew J. Hesford" <ajh@sideband.org>
Date: Tue, 19 Sep 2023 20:15:59 -0400
Subject: [PATCH] python3-numpy: update to 1.26.0.

---
 srcpkgs/python3-numpy/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python3-numpy/template b/srcpkgs/python3-numpy/template
index 91e93e941b3ff..8517fb88b04b0 100644
--- a/srcpkgs/python3-numpy/template
+++ b/srcpkgs/python3-numpy/template
@@ -1,6 +1,6 @@
 # Template file for 'python3-numpy'
 pkgname=python3-numpy
-version=1.25.2
+version=1.26.0
 revision=1
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Cython gcc-fortran"
@@ -14,7 +14,7 @@ license="BSD-3-Clause"
 homepage="https://www.numpy.org/"
 changelog="https://numpy.org/doc/stable/release.html"
 distfiles="${PYPI_SITE}/n/numpy/numpy-${version}.tar.gz"
-checksum=fd608e19c8d7c55021dffd43bfe5492fab8cc105cc8986f813f8c3c048b38760
+checksum=f93fc78fe8bf15afe2b8d6b6499f1c73953169fad1e9a8dd086cdff3190e7fdf
 alternatives="numpy:f2py:/usr/bin/f2py3"
 
 build_options="openblas"

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: python3-numpy: update to 1.26.0.
  2023-09-22 14:15 [PR PATCH] python3-numpy: update to 1.26.0 ahesford
@ 2023-09-23 14:00 ` tornaria
  2023-09-23 14:41 ` tornaria
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: tornaria @ 2023-09-23 14:00 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1089 bytes --]

New comment by tornaria on void-packages repository

https://github.com/void-linux/void-packages/pull/46185#issuecomment-1732324997

Comment:
There are a bunch of failing tests:
```
=========================== short test summary info ============================
ERROR numpy/core/tests/test_mem_policy.py::test_set_policy - RuntimeError: co...
ERROR numpy/core/tests/test_mem_policy.py::test_default_policy_singleton - Ru...
ERROR numpy/core/tests/test_mem_policy.py::test_policy_propagation - RuntimeE...
ERROR numpy/core/tests/test_mem_policy.py::test_context_locality - RuntimeErr...
ERROR numpy/core/tests/test_mem_policy.py::test_thread_locality - RuntimeErro...
ERROR numpy/core/tests/test_mem_policy.py::test_switch_owner[0] - RuntimeErro...
ERROR numpy/core/tests/test_mem_policy.py::test_switch_owner[1] - RuntimeErro...
ERROR numpy/core/tests/test_mem_policy.py::test_switch_owner[None] - RuntimeE...
ERROR numpy/core/tests/test_mem_policy.py::test_owner_is_base - RuntimeError:...
35354 passed, 1630 skipped, 33 xfailed, 1 xpassed, 9 errors in 94.76s (0:01:34)
```

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: python3-numpy: update to 1.26.0.
  2023-09-22 14:15 [PR PATCH] python3-numpy: update to 1.26.0 ahesford
  2023-09-23 14:00 ` tornaria
@ 2023-09-23 14:41 ` tornaria
  2023-09-23 16:19 ` tornaria
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: tornaria @ 2023-09-23 14:41 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1206 bytes --]

New comment by tornaria on void-packages repository

https://github.com/void-linux/void-packages/pull/46185#issuecomment-1732333079

Comment:
> There are a bunch of failing tests:
> 
> ```
> =========================== short test summary info ============================
> ERROR numpy/core/tests/test_mem_policy.py::test_set_policy - RuntimeError: co...
> ERROR numpy/core/tests/test_mem_policy.py::test_default_policy_singleton - Ru...
> ERROR numpy/core/tests/test_mem_policy.py::test_policy_propagation - RuntimeE...
> ERROR numpy/core/tests/test_mem_policy.py::test_context_locality - RuntimeErr...
> ERROR numpy/core/tests/test_mem_policy.py::test_thread_locality - RuntimeErro...
> ERROR numpy/core/tests/test_mem_policy.py::test_switch_owner[0] - RuntimeErro...
> ERROR numpy/core/tests/test_mem_policy.py::test_switch_owner[1] - RuntimeErro...
> ERROR numpy/core/tests/test_mem_policy.py::test_switch_owner[None] - RuntimeE...
> ERROR numpy/core/tests/test_mem_policy.py::test_owner_is_base - RuntimeError:...
> 35354 passed, 1630 skipped, 33 xfailed, 1 xpassed, 9 errors in 94.76s (0:01:34)
> ```

Fixed by adding `meson` to `checkdepends`.

I'm now running sagemath testsuite.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: python3-numpy: update to 1.26.0.
  2023-09-22 14:15 [PR PATCH] python3-numpy: update to 1.26.0 ahesford
  2023-09-23 14:00 ` tornaria
  2023-09-23 14:41 ` tornaria
@ 2023-09-23 16:19 ` tornaria
  2023-09-23 17:07 ` [PR PATCH] [Updated] " ahesford
  2023-09-23 18:52 ` [PR PATCH] [Closed]: " ahesford
  4 siblings, 0 replies; 6+ messages in thread
From: tornaria @ 2023-09-23 16:19 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 234 bytes --]

New comment by tornaria on void-packages repository

https://github.com/void-linux/void-packages/pull/46185#issuecomment-1732357025

Comment:
@ahesford: sagemath looks ok, this seems good to go after adding `meson` to `checkdepends`.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PR PATCH] [Updated] python3-numpy: update to 1.26.0.
  2023-09-22 14:15 [PR PATCH] python3-numpy: update to 1.26.0 ahesford
                   ` (2 preceding siblings ...)
  2023-09-23 16:19 ` tornaria
@ 2023-09-23 17:07 ` ahesford
  2023-09-23 18:52 ` [PR PATCH] [Closed]: " ahesford
  4 siblings, 0 replies; 6+ messages in thread
From: ahesford @ 2023-09-23 17:07 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 432 bytes --]

There is an updated pull request by ahesford against master on the void-packages repository

https://github.com/ahesford/void-packages numpy
https://github.com/void-linux/void-packages/pull/46185

python3-numpy: update to 1.26.0.
#### Testing the changes
- I tested the changes in this PR: **YES**

@tornaria Please test with sagemath.


A patch file from https://github.com/void-linux/void-packages/pull/46185.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-numpy-46185.patch --]
[-- Type: text/x-diff, Size: 1506 bytes --]

From 6ae0e6cb505ff8234f52a21abeb161d915abbe00 Mon Sep 17 00:00:00 2001
From: "Andrew J. Hesford" <ajh@sideband.org>
Date: Tue, 19 Sep 2023 20:15:59 -0400
Subject: [PATCH] python3-numpy: update to 1.26.0.

---
 srcpkgs/python3-numpy/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-numpy/template b/srcpkgs/python3-numpy/template
index 91e93e941b3ff..086debc2a2492 100644
--- a/srcpkgs/python3-numpy/template
+++ b/srcpkgs/python3-numpy/template
@@ -1,20 +1,20 @@
 # Template file for 'python3-numpy'
 pkgname=python3-numpy
-version=1.25.2
+version=1.26.0
 revision=1
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Cython gcc-fortran"
 makedepends="python3-devel
  $(vopt_if openblas 'openblas-devel' 'lapack-devel cblas-devel')"
-depends="python3-setuptools"
-checkdepends="python3-pytest-xdist python3-hypothesis python3-pytz"
+depends="python3"
+checkdepends="python3-pytest-xdist python3-hypothesis python3-pytz meson"
 short_desc="Fast and sophisticated array facility to Python3"
 maintainer="Andrew J. Hesford <ajh@sideband.org>"
 license="BSD-3-Clause"
 homepage="https://www.numpy.org/"
 changelog="https://numpy.org/doc/stable/release.html"
 distfiles="${PYPI_SITE}/n/numpy/numpy-${version}.tar.gz"
-checksum=fd608e19c8d7c55021dffd43bfe5492fab8cc105cc8986f813f8c3c048b38760
+checksum=f93fc78fe8bf15afe2b8d6b6499f1c73953169fad1e9a8dd086cdff3190e7fdf
 alternatives="numpy:f2py:/usr/bin/f2py3"
 
 build_options="openblas"

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PR PATCH] [Closed]: python3-numpy: update to 1.26.0.
  2023-09-22 14:15 [PR PATCH] python3-numpy: update to 1.26.0 ahesford
                   ` (3 preceding siblings ...)
  2023-09-23 17:07 ` [PR PATCH] [Updated] " ahesford
@ 2023-09-23 18:52 ` ahesford
  4 siblings, 0 replies; 6+ messages in thread
From: ahesford @ 2023-09-23 18:52 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 276 bytes --]

There's a closed pull request on the void-packages repository

python3-numpy: update to 1.26.0.
https://github.com/void-linux/void-packages/pull/46185

Description:
#### Testing the changes
- I tested the changes in this PR: **YES**

@tornaria Please test with sagemath.


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2023-09-23 18:52 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-22 14:15 [PR PATCH] python3-numpy: update to 1.26.0 ahesford
2023-09-23 14:00 ` tornaria
2023-09-23 14:41 ` tornaria
2023-09-23 16:19 ` tornaria
2023-09-23 17:07 ` [PR PATCH] [Updated] " ahesford
2023-09-23 18:52 ` [PR PATCH] [Closed]: " ahesford

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).