pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/math/py-statsmodels
Module Name: pkgsrc
Committed By: wiz
Date: Sun Dec 10 09:41:36 UTC 2023
Modified Files:
pkgsrc/math/py-statsmodels: Makefile distinfo
Added Files:
pkgsrc/math/py-statsmodels/patches:
patch-statsmodels_tsa_exponential__smoothing___ets__smooth.pyx
patch-statsmodels_tsa_statespace___filters___inversions.pyx.in
patch-statsmodels_tsa_statespace___filters___univariate.pyx.in
patch-statsmodels_tsa_statespace___filters___univariate__diffuse.pyx.in
Log Message:
py-statsmodels: fix build with Cython 3.
Bump PKGREVISION.
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 pkgsrc/math/py-statsmodels/Makefile
cvs rdiff -u -r1.10 -r1.11 pkgsrc/math/py-statsmodels/distinfo
cvs rdiff -u -r0 -r1.1 \
pkgsrc/math/py-statsmodels/patches/patch-statsmodels_tsa_exponential__smoothing___ets__smooth.pyx \
pkgsrc/math/py-statsmodels/patches/patch-statsmodels_tsa_statespace___filters___inversions.pyx.in \
pkgsrc/math/py-statsmodels/patches/patch-statsmodels_tsa_statespace___filters___univariate.pyx.in \
pkgsrc/math/py-statsmodels/patches/patch-statsmodels_tsa_statespace___filters___univariate__diffuse.pyx.in
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/math/py-statsmodels/Makefile
diff -u pkgsrc/math/py-statsmodels/Makefile:1.17 pkgsrc/math/py-statsmodels/Makefile:1.18
--- pkgsrc/math/py-statsmodels/Makefile:1.17 Tue Aug 1 23:20:49 2023
+++ pkgsrc/math/py-statsmodels/Makefile Sun Dec 10 09:41:36 2023
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.17 2023/08/01 23:20:49 wiz Exp $
+# $NetBSD: Makefile,v 1.18 2023/12/10 09:41:36 wiz Exp $
DISTNAME= statsmodels-0.14.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
+PKGREVISION= 1
CATEGORIES= math python
MASTER_SITES= ${MASTER_SITE_PYPI:=s/statsmodels/}
Index: pkgsrc/math/py-statsmodels/distinfo
diff -u pkgsrc/math/py-statsmodels/distinfo:1.10 pkgsrc/math/py-statsmodels/distinfo:1.11
--- pkgsrc/math/py-statsmodels/distinfo:1.10 Mon May 8 08:51:03 2023
+++ pkgsrc/math/py-statsmodels/distinfo Sun Dec 10 09:41:36 2023
@@ -1,5 +1,9 @@
-$NetBSD: distinfo,v 1.10 2023/05/08 08:51:03 adam Exp $
+$NetBSD: distinfo,v 1.11 2023/12/10 09:41:36 wiz Exp $
BLAKE2s (statsmodels-0.14.0.tar.gz) = 568fe2bf6f24d4c10d48571586766f895f6584ec3b35926cccf15b5c032e49ba
SHA512 (statsmodels-0.14.0.tar.gz) = 876cc45eb4b5badee2ff859df8a45ce7c4f6ab2973d481f58c5b7906ebcdbb56a64769d5dd7a38c7b7415a4ee7cf98cf300b8c623bda9df001b982ff6844d1fd
Size (statsmodels-0.14.0.tar.gz) = 19374614 bytes
+SHA1 (patch-statsmodels_tsa_exponential__smoothing___ets__smooth.pyx) = 7f16d85398a2dda6a11c3a4e0c47bad454194207
+SHA1 (patch-statsmodels_tsa_statespace___filters___inversions.pyx.in) = 2d22542e9ce8122fe8d127907897fd33b310d610
+SHA1 (patch-statsmodels_tsa_statespace___filters___univariate.pyx.in) = 38a00193937033bd7bd739cbf6859c67dd443c97
+SHA1 (patch-statsmodels_tsa_statespace___filters___univariate__diffuse.pyx.in) = f9d4746a87f5d5f23e916f0b2369c9f90d96048c
Added files:
Index: pkgsrc/math/py-statsmodels/patches/patch-statsmodels_tsa_exponential__smoothing___ets__smooth.pyx
diff -u /dev/null pkgsrc/math/py-statsmodels/patches/patch-statsmodels_tsa_exponential__smoothing___ets__smooth.pyx:1.1
--- /dev/null Sun Dec 10 09:41:36 2023
+++ pkgsrc/math/py-statsmodels/patches/patch-statsmodels_tsa_exponential__smoothing___ets__smooth.pyx Sun Dec 10 09:41:36 2023
@@ -0,0 +1,14 @@
+$NetBSD: patch-statsmodels_tsa_exponential__smoothing___ets__smooth.pyx,v 1.1 2023/12/10 09:41:36 wiz Exp $
+
+Cython 3 compatibility.
+https://github.com/statsmodels/statsmodels/pull/8961/
+
+--- statsmodels/tsa/exponential_smoothing/_ets_smooth.pyx.orig 2021-10-06 09:51:52.000000000 +0000
++++ statsmodels/tsa/exponential_smoothing/_ets_smooth.pyx
+@@ -1,5 +1,5 @@
+ #!python
+-#cython: wraparound=False, boundscheck=False, cdivision=True
++#cython: wraparound=False, boundscheck=False, cdivision=True, cpow=True
+
+ from cpython cimport bool
+ import numpy as np
Index: pkgsrc/math/py-statsmodels/patches/patch-statsmodels_tsa_statespace___filters___inversions.pyx.in
diff -u /dev/null pkgsrc/math/py-statsmodels/patches/patch-statsmodels_tsa_statespace___filters___inversions.pyx.in:1.1
--- /dev/null Sun Dec 10 09:41:36 2023
+++ pkgsrc/math/py-statsmodels/patches/patch-statsmodels_tsa_statespace___filters___inversions.pyx.in Sun Dec 10 09:41:36 2023
@@ -0,0 +1,15 @@
+$NetBSD: patch-statsmodels_tsa_statespace___filters___inversions.pyx.in,v 1.1 2023/12/10 09:41:36 wiz Exp $
+
+Cython 3 compatibility.
+https://github.com/statsmodels/statsmodels/pull/8961/
+
+--- statsmodels/tsa/statespace/_filters/_inversions.pyx.in.orig 2021-10-06 09:51:52.000000000 +0000
++++ statsmodels/tsa/statespace/_filters/_inversions.pyx.in
+@@ -1,6 +1,7 @@
+ #cython: boundscheck=False
+ #cython: wraparound=False
+ #cython: cdivision=False
++#cython: cpow=True
+ """
+ State Space Models
+
Index: pkgsrc/math/py-statsmodels/patches/patch-statsmodels_tsa_statespace___filters___univariate.pyx.in
diff -u /dev/null pkgsrc/math/py-statsmodels/patches/patch-statsmodels_tsa_statespace___filters___univariate.pyx.in:1.1
--- /dev/null Sun Dec 10 09:41:36 2023
+++ pkgsrc/math/py-statsmodels/patches/patch-statsmodels_tsa_statespace___filters___univariate.pyx.in Sun Dec 10 09:41:36 2023
@@ -0,0 +1,15 @@
+$NetBSD: patch-statsmodels_tsa_statespace___filters___univariate.pyx.in,v 1.1 2023/12/10 09:41:36 wiz Exp $
+
+Cython 3 compatibility.
+https://github.com/statsmodels/statsmodels/pull/8961/
+
+--- statsmodels/tsa/statespace/_filters/_univariate.pyx.in.orig 2023-04-26 12:14:01.000000000 +0000
++++ statsmodels/tsa/statespace/_filters/_univariate.pyx.in
+@@ -2,6 +2,7 @@
+ #cython: boundscheck=False
+ #cython: wraparound=False
+ #cython: cdivision=False
++#cython: cpow=True
+ """
+ State Space Models
+
Index: pkgsrc/math/py-statsmodels/patches/patch-statsmodels_tsa_statespace___filters___univariate__diffuse.pyx.in
diff -u /dev/null pkgsrc/math/py-statsmodels/patches/patch-statsmodels_tsa_statespace___filters___univariate__diffuse.pyx.in:1.1
--- /dev/null Sun Dec 10 09:41:36 2023
+++ pkgsrc/math/py-statsmodels/patches/patch-statsmodels_tsa_statespace___filters___univariate__diffuse.pyx.in Sun Dec 10 09:41:36 2023
@@ -0,0 +1,15 @@
+$NetBSD: patch-statsmodels_tsa_statespace___filters___univariate__diffuse.pyx.in,v 1.1 2023/12/10 09:41:36 wiz Exp $
+
+Cython 3 compatibility.
+https://github.com/statsmodels/statsmodels/pull/8961/
+
+--- statsmodels/tsa/statespace/_filters/_univariate_diffuse.pyx.in.orig 2021-10-06 09:51:52.000000000 +0000
++++ statsmodels/tsa/statespace/_filters/_univariate_diffuse.pyx.in
+@@ -2,6 +2,7 @@
+ #cython: boundscheck=False
+ #cython: wraparound=False
+ #cython: cdivision=False
++#cython: cpow=True
+ """
+ State Space Models
+
Home |
Main Index |
Thread Index |
Old Index