Skip to content

Commit 1d9cd0c

Browse files
authored
Merge pull request #242 from mbrobbel/arrow-1.0.1
Bump Arrow to 1.0.1
2 parents 38327a9 + 60b25e2 commit 1d9cd0c

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/assets.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
env:
1010
CMAKE_VERSION: '3.17.3'
11-
ARROW_VERSION: '1.0.0'
11+
ARROW_VERSION: '1.0.1'
1212

1313
jobs:
1414
python:

.github/workflows/examples.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
container: quay.io/pypa/manylinux2014_x86_64:latest
1414
env:
1515
CMAKE_VERSION: '3.17.3'
16-
ARROW_VERSION: '1.0.0'
16+
ARROW_VERSION: '1.0.1'
1717
CPYTHON_VERSION: 'cp35-cp35m'
1818
steps:
1919
- uses: actions/checkout@v2

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
pull_request:
88

99
env:
10-
ARROW_VERSION: '1.0.0'
10+
ARROW_VERSION: '1.0.1'
1111

1212
jobs:
1313
cpp:

codegen/python/setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,12 @@ def initialize_options(self):
119119
install_requires=[
120120
'numpy >= 1.14',
121121
'pandas',
122-
'pyarrow == 1.0.0',
122+
'pyarrow == 1.0.1',
123123
],
124124
setup_requires=[
125125
'cython',
126126
'numpy',
127-
'pyarrow == 1.0.0',
127+
'pyarrow == 1.0.1',
128128
'plumbum'
129129
],
130130
classifiers=[

runtime/python/setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,12 +124,12 @@ def initialize_options(self):
124124
install_requires=[
125125
'numpy >= 1.14',
126126
'pandas',
127-
'pyarrow == 1.0.0',
127+
'pyarrow == 1.0.1',
128128
],
129129
setup_requires=[
130130
'cython',
131131
'numpy',
132-
'pyarrow == 1.0.0',
132+
'pyarrow == 1.0.1',
133133
'plumbum',
134134
'pytest-runner'
135135
],

0 commit comments

Comments
 (0)