Skip to content
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

production release (VirES v3.14.0) #49

Merged
merged 2 commits into from
Aug 1, 2024
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: 3 additions & 3 deletions eoxmagmod/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
include MANIFEST.in
recursive-exclude eoxmagmod *.pyc *.o
recursive-include eoxmagmod *.c *.h
graft eoxmagmod/data
graft eoxmagmod/tests/data
graft eoxmagmod/magnetic_model/tests/data
recursive-include eoxmagmod/data *.txt *.shc *.cof *.COF
recursive-include eoxmagmod/tests/data *.txt *.tsv
recursive-include eoxmagmod/magnetic_models/tests/data *.txt *.cdf
2 changes: 0 additions & 2 deletions eoxmagmod/eoxmagmod/pymm_aux.h
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,6 @@ static PyArrayObject* _get_as_double_array(PyObject *data, int dmin, int dmax,
int reqs, const char *label)
{
return _get_as_array(data, NPY_FLOAT64, dmin, dmax, reqs, label);
PyArray_Descr *dtype = PyArray_DescrFromType(NPY_FLOAT64);
return (PyArrayObject*) PyArray_FromAny(data, dtype, dmin, dmax, reqs, NULL);
}


Expand Down
Loading