Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Commit e87095a

Browse files
authored
Update to Numba 0.49.1 (#838)
* Update to Numba 0.49.1 * Fix requirements.txt
1 parent 8547da3 commit e87095a

File tree

4 files changed

+5
-11
lines changed

4 files changed

+5
-11
lines changed

README.rst

+2-8
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ the code by leveraging modern hardware instructions and by utilizing all availab
2323

2424
Intel® SDC documentation can be found `here <https://intelpython.github.io/sdc-doc/>`_.
2525

26-
Intel® SDC uses special Numba build based on ``0.48.0`` tag for build and run.
27-
Required Numba version can be installed from ``intel/label/beta`` channel from the Anaconda Cloud.
28-
2926
.. note::
3027
For maximum performance and stability, please use numba from ``intel/label/beta`` channel.
3128

@@ -61,9 +58,6 @@ If you do not have conda, we recommend using Miniconda3::
6158
./miniconda.sh -b
6259
export PATH=$HOME/miniconda3/bin:$PATH
6360

64-
Intel® SDC uses special Numba build based on ``0.48.0`` tag for build and run.
65-
Required Numba version can be installed from ``intel/label/beta`` channel from the Anaconda Cloud.
66-
6761
.. note::
6862
For maximum performance and stability, please use numba from ``intel/label/beta`` channel.
6963

@@ -88,7 +82,7 @@ Building on Linux with setuptools
8882

8983
PYVER=<3.6 or 3.7>
9084
NUMPYVER=<1.16 or 1.17>
91-
conda create -n sdc-env -q -y -c intel/label/beta -c defaults -c intel -c conda-forge python=$PYVER numpy=$NUMPYVER numba=0.48.0 pandas=0.25.3 pyarrow=0.17.0 gcc_linux-64 gxx_linux-64
85+
conda create -n sdc-env -q -y -c intel/label/beta -c defaults -c intel -c conda-forge python=$PYVER numpy=$NUMPYVER numba=0.49 pandas=0.25.3 pyarrow=0.17.0 gcc_linux-64 gxx_linux-64
9286
source activate sdc-env
9387
git clone https://github.com/IntelPython/sdc.git
9488
cd sdc
@@ -126,7 +120,7 @@ Building on Windows with setuptools
126120

127121
set PYVER=<3.6 or 3.7>
128122
set NUMPYVER=<1.16 or 1.17>
129-
conda create -n sdc-env -c intel/label/beta -c defaults -c intel -c conda-forge python=%PYVER% numpy=%NUMPYVER% numba=0.48.0 pandas=0.25.3 pyarrow=0.17.0
123+
conda create -n sdc-env -c intel/label/beta -c defaults -c intel -c conda-forge python=%PYVER% numpy=%NUMPYVER% numba=0.49 pandas=0.25.3 pyarrow=0.17.0
130124
conda activate sdc-env
131125
set INCLUDE=%INCLUDE%;%CONDA_PREFIX%\Library\include
132126
set LIB=%LIB%;%CONDA_PREFIX%\Library\lib

buildscripts/sdc-conda-recipe/meta.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% set NUMBA_VERSION = "==0.49.0" %}
1+
{% set NUMBA_VERSION = "==0.49.1" %}
22
{% set PANDAS_VERSION = "==0.25.3" %}
33
{% set PYARROW_VERSION = "==0.17.0" %}
44

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
numpy>=1.16
22
pandas==0.25.3
33
pyarrow==0.17.0
4-
numba==0.49
4+
numba==0.49.1

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ def run(self):
316316
'numpy>=1.16',
317317
'pandas==0.25.3',
318318
'pyarrow==0.17.0',
319-
'numba>=0.48'
319+
'numba>=0.49.1,<0.50.0'
320320
],
321321
cmdclass=sdc_build_commands,
322322
ext_modules=_ext_mods,

0 commit comments

Comments
 (0)