Skip to content
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 sdks/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def get_version():
'pymongo>=3.8.0,<4.0.0',
'protobuf>=3.12.2,<4',
'proto-plus>=1.7.1,<2',
'pyarrow>=0.15.1,<7.0.0',
'pyarrow>=0.15.1,<8.0.0',
'pydot>=1.2.0,<2',
'python-dateutil>=2.8.0,<3',
'pytz>=2018.3',
Expand Down
4 changes: 4 additions & 0 deletions sdks/python/test-suites/tox/py38/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ toxTask "testPy38pyarrow-6", "py38-pyarrow-6"
test.dependsOn "testPy38pyarrow-6"
preCommitPy38.dependsOn "testPy38pyarrow-6"

toxTask "testPy38pyarrow-7", "py38-pyarrow-7"
test.dependsOn "testPy38pyarrow-7"
preCommitPy38.dependsOn "testPy38pyarrow-7"

// Create a test task for each minor version of pandas
toxTask "testPy38pandas-11", "py38-pandas-11"
test.dependsOn "testPy38pandas-11"
Expand Down
3 changes: 2 additions & 1 deletion sdks/python/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ extras = test
commands =
{toxinidir}/scripts/pytest_validates_runner.sh {envname} {toxinidir}/apache_beam/runners/portability/spark_runner_test.py {posargs}

[testenv:py{36,37,38,39}-pyarrow-{0,1,2,3,4,5,6}]
[testenv:py{36,37,38,39}-pyarrow-{0,1,2,3,4,5,6,7}]
deps =
0: pyarrow>=0.15.1,<0.18.0
1: pyarrow>=1,<2
Expand All @@ -245,6 +245,7 @@ deps =
4: pyarrow>=4,<5
5: pyarrow>=5,<6
6: pyarrow>=6,<7
7: pyarrow>=7,<8
commands =
# Log pyarrow and numpy version for debugging
/bin/sh -c "pip freeze | grep -E '(pyarrow|numpy)'"
Expand Down