diff options
author | mattip <matti.picus@gmail.com> | 2020-01-14 06:09:11 +1100 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2020-01-17 18:27:38 +1100 |
commit | 879d0e43a0509641084a4286bf3159f1d54180d8 (patch) | |
tree | c068133287134ad8112dfe3b914c24d7a7b8127c /numpy | |
parent | 21bc6b6e6e4f856cae061f6f21297e916cd95ca9 (diff) | |
download | numpy-879d0e43a0509641084a4286bf3159f1d54180d8.tar.gz |
BLD: use 0.3.7 release version, add dependency on libgfortran5
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/fft/_pocketfft.c | 10 | ||||
-rw-r--r-- | numpy/random/src/distributions/random_mvhg_count.c | 2 | ||||
-rw-r--r-- | numpy/random/src/distributions/random_mvhg_marginals.c | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/numpy/fft/_pocketfft.c b/numpy/fft/_pocketfft.c index de86e36d3..764116a84 100644 --- a/numpy/fft/_pocketfft.c +++ b/numpy/fft/_pocketfft.c @@ -10,6 +10,11 @@ * \author Martin Reinecke */ +#define NPY_NO_DEPRECATED_API NPY_API_VERSION + +#include "Python.h" +#include "numpy/arrayobject.h" + #include <math.h> #include <string.h> #include <stdlib.h> @@ -2184,11 +2189,6 @@ WARN_UNUSED_RESULT static int rfft_forward(rfft_plan plan, double c[], double fc return rfftblue_forward(plan->blueplan,c,fct); } -#define NPY_NO_DEPRECATED_API NPY_API_VERSION - -#include "Python.h" -#include "numpy/arrayobject.h" - static PyObject * execute_complex(PyObject *a1, int is_forward, double fct) { diff --git a/numpy/random/src/distributions/random_mvhg_count.c b/numpy/random/src/distributions/random_mvhg_count.c index 7cbed1f9e..1d4ed978e 100644 --- a/numpy/random/src/distributions/random_mvhg_count.c +++ b/numpy/random/src/distributions/random_mvhg_count.c @@ -1,8 +1,8 @@ +#include "numpy/random/distributions.h" #include <stdint.h> #include <stdlib.h> #include <stdbool.h> -#include "numpy/random/distributions.h" /* * random_multivariate_hypergeometric_count diff --git a/numpy/random/src/distributions/random_mvhg_marginals.c b/numpy/random/src/distributions/random_mvhg_marginals.c index 809d129de..689a85671 100644 --- a/numpy/random/src/distributions/random_mvhg_marginals.c +++ b/numpy/random/src/distributions/random_mvhg_marginals.c @@ -1,9 +1,9 @@ +#include "numpy/random/distributions.h" #include <stdint.h> #include <stddef.h> #include <stdbool.h> #include <math.h> -#include "numpy/random/distributions.h" #include "logfactorial.h" |