Skip to content

Commit

Permalink
FIX Upgrade arrow to 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
raydouglass committed Jan 30, 2019
1 parent 5d5919d commit 72ec995
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ flag. Below is a list of the available arguments and their purpose:
| `NUMBA_VERSION` | newest | >=0.40.0 | set numba version |
| `NUMPY_VERSION` | newest | >=1.14.3 | set numpy version |
| `PANDAS_VERSION` | newest | >=0.23.4 | set pandas version |
| `PYARROW_VERSION` | 0.11.1 | Not supported | set pyarrow version |
| `PYARROW_VERSION` | 0.12.0 | Not supported | set pyarrow version |
| `CMAKE_VERSION` | newest | >=3.12 | set cmake version |
| `CYTHON_VERSION` | 0.29 | Not supported | set Cython version |
| `PYTHON_VERSION` | 3.6 | 3.7 | set python version |
Expand Down
2 changes: 1 addition & 1 deletion ci/cpu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ logger "Activate conda env..."
source activate gdf

logger "Bump pyarrow"
conda install -c conda-forge pyarrow=0.11.1 arrow-cpp=0.11.1 pandas>=0.23.4
conda install -c conda-forge pyarrow=0.12.0 arrow-cpp=0.12.0 pandas>=0.23.4

logger "Check versions..."
python --version
Expand Down
2 changes: 1 addition & 1 deletion ci/gpu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ logger "Activate conda env..."
source activate gdf

logger "Bump pyarrow"
conda install -c conda-forge pyarrow=0.11.1 arrow-cpp=0.11.1 pandas>=0.23.4
conda install -c conda-forge pyarrow=0.12.0 arrow-cpp=0.12.0 pandas>=0.23.4

logger "Check versions..."
python --version
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/cudf_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies:
- python>=3.6,<3.8
- numba>=0.40
- pandas>=0.23.4
- pyarrow=0.11.1
- pyarrow=0.12.0
- notebook>=0.5.0
- boost
- nvstrings
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/libcudf/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ requirements:
- cmake 3.12
- nvstrings
run:
- pyarrow 0.11.1.*
- pyarrow 0.12.0
- nvstrings

test:
Expand Down
4 changes: 2 additions & 2 deletions conda/recipes/libcudf_cffi/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ requirements:
- setuptools
- nvstrings
- pycparser=2.19
- pyarrow 0.11.1.*
- pyarrow 0.12.0
run:
- libcudf {{ version }}.*
- python x.x
- cffi
- pycparser=2.19
- pyarrow 0.11.1.*
- pyarrow 0.12.0

test:
commands:
Expand Down
2 changes: 1 addition & 1 deletion cpp/cmake/Templates/Arrow.CMakeLists.txt.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ include(ExternalProject)

ExternalProject_Add(Arrow
GIT_REPOSITORY https://github.com/apache/arrow.git
GIT_TAG apache-arrow-0.11.1
GIT_TAG apache-arrow-0.12.10
SOURCE_DIR "${ARROW_ROOT}/arrow"
SOURCE_SUBDIR "cpp"
BINARY_DIR "${ARROW_ROOT}/build"
Expand Down
2 changes: 1 addition & 1 deletion setup_pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def run(self):
'pandas>=0.23.4',
'numba>=0.40.0,<0.42',
'pycparser==2.19',
'pyarrow==0.11.1',
'pyarrow==0.12.0',
'cffi>=1.0.0',
'cython>=0.29,<0.30',
'numpy>=1.14'
Expand Down

0 comments on commit 72ec995

Please sign in to comment.