Skip to content

Commit

Permalink
Merge pull request #294 from bjoernmeier/add-python3.9
Browse files Browse the repository at this point in the history
add test pipelines and flags for Python 3.9
  • Loading branch information
xhochy authored Feb 10, 2021
2 parents 98b0767 + 395eede commit 3d4c62b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
- +test-python3.8-arrow0.x.x
- +test-python3.8-arrow1.x.x
- +test-python3.8-arrow2.x.x
- +test-python3.9-arrow2.x.x
- +test-python3.9-arrow3.x.x
experimental: [ false ]
upload: [ false ]
include:
Expand Down
18 changes: 18 additions & 0 deletions Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,24 @@ test-python3.8-arrow3.x.x:

SAVE ARTIFACT /result AS LOCAL result

test-python3.9-arrow2.x.x:
ARG PYTHON_VERSION="3.9.1"
COPY --build-arg PYTHON_VERSION="$PYTHON_VERSION" \
--build-arg ARROW_VERSION_RULE=">=2,<3" \
--build-arg NUMPY_VERSION_RULE=">=1.20.0" \
+test/result /result

SAVE ARTIFACT /result AS LOCAL result

test-python3.9-arrow3.x.x:
ARG PYTHON_VERSION="3.9.1"
COPY --build-arg PYTHON_VERSION="$PYTHON_VERSION" \
--build-arg ARROW_VERSION_RULE=">=3,<3.1" \
--build-arg NUMPY_VERSION_RULE=">=1.20.0" \
+test/result /result

SAVE ARTIFACT /result AS LOCAL result


test-python3.8-arrow-nightly:
ARG PYTHON_VERSION="3.8.5"
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ def get_extension_modules():
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Database'],
ext_modules = get_extension_modules(),
Expand Down

0 comments on commit 3d4c62b

Please sign in to comment.