File tree Expand file tree Collapse file tree 6 files changed +9
-4
lines changed
Expand file tree Collapse file tree 6 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ install:
2323 - conda update -q conda
2424 - conda info -a
2525 - conda install gtest cmake -c conda-forge
26- - conda install xtensor==0.13.1 pytest numpy pybind11==2.2.1 -c conda-forge
26+ - conda install xtensor==0.14.0 pytest numpy pybind11==2.2.1 -c conda-forge
2727 - " set PYTHONHOME=%MINICONDA%"
2828 - cmake -G "NMake Makefiles" -D CMAKE_INSTALL_PREFIX=%MINICONDA%\\Library -D BUILD_TESTS=ON -D PYTHON_EXECUTABLE=%MINICONDA%\\python.exe .
2929 - nmake test_xtensor_python
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ install:
9595 - conda update -q conda
9696 # Useful for debugging any issues with conda
9797 - conda info -a
98- - conda install xtensor==0.13.1 pytest numpy pybind11==2.2.1 -c conda-forge
98+ - conda install xtensor==0.14.0 pytest numpy pybind11==2.2.1 -c conda-forge
9999 - conda install cmake gtest -c conda-forge
100100 - cmake -D BUILD_TESTS=ON -D CMAKE_INSTALL_PREFIX=$HOME/miniconda .
101101 - make -j2 test_xtensor_python
Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ from the `docs` subdirectory.
191191
192192| ` xtensor-python ` | ` xtensor ` | ` pybind11 ` |
193193| ------------------| -----------| ------------------|
194- | master | ^0.13.1 | ~ 2.1.0 or ~ 2.2.1 |
194+ | master | ^0.14.0 | ~ 2.1.0 or ~ 2.2.1 |
195195| 0.15.x | ^0.13.1 | ~ 2.1.0 or ~ 2.2.1 |
196196| 0.14.x | ^0.12.0 | ~ 2.1.0 or ~ 2.2.1 |
197197| 0.13.x | ^0.11.0 | ~ 2.1.0 or ~ 2.2.1 |
Original file line number Diff line number Diff line change 2525#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
2626
2727#include " numpy/arrayobject.h"
28+ // Required because pyconfig.hpp defines copysign to _copysign
29+ #undef copysign
2830
31+ #include < cmath>
2932#include " xtensor/xcontainer.hpp"
3033
3134#include " xtl/xsequence.hpp"
Original file line number Diff line number Diff line change 66* The full license is in the file LICENSE, distributed with this software. *
77****************************************************************************/
88
9+ // Required to avoid the error "std does not have memeber copysign"
10+ #include < cmath>
911#include < Python.h>
1012
1113#include " pybind11/numpy.h"
Original file line number Diff line number Diff line change 1010#define TEST_COMMON_HPP
1111
1212#include " xtensor/xlayout.hpp"
13- #include " xtensor/xstridedview .hpp"
13+ #include " xtensor/xstrided_view .hpp"
1414
1515#include " xtl/xsequence.hpp"
1616
You can’t perform that action at this time.
0 commit comments