Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to Arrow 6.0.1 #1498

Merged
merged 3 commits into from
Jan 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildSrc/src/main/groovy/Classpaths.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class Classpaths {
static final String COMMONS_GROUP = 'org.apache.commons'

static final String ARROW_GROUP = 'org.apache.arrow'
static final String ARROW_VERSION = '5.0.0'
static final String ARROW_VERSION = '6.0.1'

static final String SLF4J_GROUP = 'org.slf4j'
static final String SLF4J_VERSION = '2.0.0-alpha5'
Expand Down
4 changes: 2 additions & 2 deletions pyclient/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ tasks.getByName('check').dependsOn(Docker.registerDockerTask(project, 'testPyCli
dockerfile {
from('deephaven/python:local-build')
runCommand '''set -eux; \\
pip3 install unittest-xml-reporting==3.0.4 pyarrow==5.0.0 protobuf==3.17.3 grpcio==1.39.0 bitstring==3.1.9 pandas==1.2.5;\\
pip3 install unittest-xml-reporting==3.0.4 pyarrow==6.0.1 protobuf==3.17.3 grpcio==1.39.0 bitstring==3.1.9 pandas==1.2.5;\\
mkdir -p /out/report'''
environmentVariable 'DH_HOST', dockerContainerName
environmentVariable 'DH_PORT', '8080'
Expand All @@ -112,4 +112,4 @@ tasks.getByName('check').dependsOn(Docker.registerDockerTask(project, 'testPyCli
copyOut {
into layout.buildDirectory.dir('test-results')
}
})
})
4 changes: 2 additions & 2 deletions pyclient/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pandas~=1.2.5
pyarrow~=4.0.1
pyarrow~=6.0.1
grpcio
setuptools~=47.1.0
protobuf
wheel
sphinx
bitstring~=3.1.7
bitstring~=3.1.7
4 changes: 2 additions & 2 deletions sphinx/sphinx.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ def sphinxDockerfile = tasks.register('sphinxDockerfile', Dockerfile) {
copyFile "./wheel", "/wheel"
copyFile "./lib", '${VIRTUAL_ENV}/lib/python3.7/site-packages/'

runCommand '''set -eux; \\
python -m pip install sphinx==4.0.3 sphinx-autodoc-typehints==1.12.0 pyarrow==5.0.0 protobuf==3.17.3 grpcio==1.39.0 bitstring==3.1.9 /wheel/*.whl breathe==4.31.0 furo==2021.9.8
runCommand '''set -eux; \\
python -m pip install sphinx==4.0.3 sphinx-autodoc-typehints==1.12.0 pyarrow==6.0.1 protobuf==3.17.3 grpcio==1.39.0 bitstring==3.1.9 /wheel/*.whl breathe==4.31.0 furo==2021.9.8
'''
}

Expand Down