This repository was archived by the owner on Feb 2, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +7
-5
lines changed Expand file tree Collapse file tree 5 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ Building on Linux with setuptools
8585
8686 export PYVER=<3.6 or 3.7>
8787 export NUMPYVER=<1.16 or 1.17>
88- conda create -n sdc-env -q -y -c intel/label/beta -c defaults -c intel -c conda-forge python=$PYVER numpy=$NUMPYVER tbb-devel tbb4py numba=0.54.0 pandas=1.2.0 pyarrow=4.0.1 gcc_linux-64 gxx_linux-64
88+ conda create -n sdc-env -q -y -c intel/label/beta -c defaults -c intel -c conda-forge python=$PYVER numpy=$NUMPYVER tbb-devel tbb4py numba=0.54.1 pandas=1.2.0 pyarrow=4.0.1 gcc_linux-64 gxx_linux-64
8989 source activate sdc-env
9090 git clone https://github.com/IntelPython/sdc.git
9191 cd sdc
@@ -123,7 +123,7 @@ Building on Windows with setuptools
123123
124124 set PYVER=<3.6 or 3.7>
125125 set NUMPYVER=<1.16 or 1.17>
126- conda create -n sdc-env -c intel/label/beta -c defaults -c intel -c conda-forge python=%PYVER% numpy=%NUMPYVER% tbb-devel tbb4py numba=0.54.0 pandas=1.2.0 pyarrow=4.0.1
126+ conda create -n sdc-env -c intel/label/beta -c defaults -c intel -c conda-forge python=%PYVER% numpy=%NUMPYVER% tbb-devel tbb4py numba=0.54.1 pandas=1.2.0 pyarrow=4.0.1
127127 conda activate sdc-env
128128 set INCLUDE=%INCLUDE%;%CONDA_PREFIX%\Library\include
129129 set LIB=%LIB%;%CONDA_PREFIX%\Library\lib
Original file line number Diff line number Diff line change 1- {% set NUMBA_VERSION = "==0.54.0 " %}
1+ {% set NUMBA_VERSION = "==0.54.1 " %}
22{% set PANDAS_VERSION = "==1.2.0" %}
33{% set PYARROW_VERSION = "==4.0.1" %}
44
Original file line number Diff line number Diff line change 11numpy >= 1.16
22pandas == 1.2.0
33pyarrow == 4.0.1
4- numba == 0.54.0
4+ numba == 0.54.1
55tbb
66tbb-devel
Original file line number Diff line number Diff line change 3232#include < vector>
3333#include < cmath>
3434#include < algorithm>
35+ #include < stdexcept>
36+ #include < limits>
3537
3638#include " _str_decode.cpp"
3739
Original file line number Diff line number Diff line change @@ -405,7 +405,7 @@ def run(self):
405405 'numpy>=1.16' ,
406406 'pandas==1.2.0' ,
407407 'pyarrow==4.0.1' ,
408- 'numba==0.54.0 ' ,
408+ 'numba==0.54.1 ' ,
409409 'tbb'
410410 ],
411411 cmdclass = sdc_build_commands ,
You can’t perform that action at this time.
0 commit comments