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

Commit 8547da3

Browse files
Fix for PR 831 (#839)
* Update pyarrow version to 0.17.0 Update recipe, code and docs. * Disable intel channel * Disable intel channel for testing * Fix remarks Co-authored-by: Vyacheslav Smirnov <[email protected]>
1 parent c381f30 commit 8547da3

File tree

6 files changed

+6
-9
lines changed

6 files changed

+6
-9
lines changed

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Building on Linux with setuptools
8888

8989
PYVER=<3.6 or 3.7>
9090
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.15.1 gcc_linux-64 gxx_linux-64
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
9292
source activate sdc-env
9393
git clone https://github.com/IntelPython/sdc.git
9494
cd sdc
@@ -126,7 +126,7 @@ Building on Windows with setuptools
126126

127127
set PYVER=<3.6 or 3.7>
128128
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.15.1
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
130130
conda activate sdc-env
131131
set INCLUDE=%INCLUDE%;%CONDA_PREFIX%\Library\include
132132
set LIB=%LIB%;%CONDA_PREFIX%\Library\lib

buildscripts/build.py

-3
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@
3535

3636
def build(sdc_utils):
3737
os.chdir(str(sdc_utils.src_path))
38-
# For Windows build do not use intel channel due to build issue
39-
if platform.system() == 'Windows':
40-
sdc_utils.channels = '-c intel/label/beta -c defaults -c conda-forge'
4138

4239
sdc_utils.log_info('Start Intel SDC build', separate=True)
4340
conda_build_cmd = ' '.join([

buildscripts/sdc-conda-recipe/meta.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% set NUMBA_VERSION = "==0.49.0" %}
22
{% set PANDAS_VERSION = "==0.25.3" %}
3-
{% set PYARROW_VERSION = "==0.15.1" %}
3+
{% set PYARROW_VERSION = "==0.17.0" %}
44

55
package:
66
name: sdc

buildscripts/utilities.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def __init__(self, python, sdc_local_channel=None):
5252
self.line_single = '-'*80
5353

5454
# Set channels
55-
self.channel_list = ['-c', 'intel/label/beta', '-c', 'intel', '-c', 'defaults', '-c', 'conda-forge']
55+
self.channel_list = ['-c', 'intel/label/beta', '-c', 'defaults', '-c', 'conda-forge']
5656
if sdc_local_channel:
5757
sdc_local_channel = Path(sdc_local_channel).resolve().as_uri()
5858
self.channel_list = ['-c', sdc_local_channel] + self.channel_list

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
3-
pyarrow==0.15.1
3+
pyarrow==0.17.0
44
numba==0.49

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ def run(self):
315315
install_requires=[
316316
'numpy>=1.16',
317317
'pandas==0.25.3',
318-
'pyarrow==0.15.1',
318+
'pyarrow==0.17.0',
319319
'numba>=0.48'
320320
],
321321
cmdclass=sdc_build_commands,

0 commit comments

Comments
 (0)