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

removed gdal python package as dependency in our python package #456

Merged
merged 4 commits into from
Nov 29, 2023
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
1 change: 1 addition & 0 deletions .github/actions/python_build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ runs:
run: |
cd python
pip install build wheel pyspark==${{ matrix.spark }} numpy==${{ matrix.numpy }}
pip install gdal==${{ matrix.gdal }}
pip install .
- name: Test and build python package
shell: bash
Expand Down
1 change: 0 additions & 1 deletion python/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ setup_requires =
install_requires =
keplergl==0.3.2
h3==3.7.3
gdal[numpy]==3.4.3

[options.package_data]
mosaic =
Expand Down
4 changes: 0 additions & 4 deletions python/test/test_raster_functions.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
import logging
import random
import unittest

from pyspark.sql.functions import abs, col, first, lit, sqrt, array

from .context import api
Expand Down
Loading