-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update repo URL and GitHub Actions (#47)
* Update repo URL * Add CI for Python 3.11 * Add MacOS * Update GitHub Actions * Update GitHub Actions * Add Python 3.12 * Add whitebox * Add whitebox * Fix macos build * Fix macos build * Fix macos build * Install gdal * Fix gdal error * Fix gdal installation error * Skip import * Skip Python 3.8 test
- Loading branch information
Showing
16 changed files
with
959 additions
and
869 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
name: macOS build | ||
jobs: | ||
test-macOS: | ||
runs-on: ${{ matrix.config.os }} | ||
name: ${{ matrix.config.os }} (${{ matrix.config.py }}) | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
config: | ||
- { os: macOS-latest, py: "3.12" } | ||
env: | ||
SDKROOT: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup Python | ||
uses: conda-incubator/setup-miniconda@v3 | ||
with: | ||
auto-activate-base: true | ||
python-version: ${{ matrix.config.py }} | ||
channels: conda-forge,defaults | ||
channel-priority: true | ||
miniconda-version: latest | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Testing conda | ||
run: | | ||
conda info | ||
conda list | ||
- name: Install GDAL | ||
run: | | ||
conda install -c conda-forge mamba --yes | ||
mamba install -c conda-forge gdal pyproj richdem lidar --yes | ||
# pip install -U whitebox | ||
|
||
# - name: Test GDAL installation | ||
# run: | | ||
# python -c "from osgeo import gdal" | ||
# gdalinfo --version | ||
|
||
# - name: Install dependencies | ||
# run: | | ||
# pip install -r requirements.txt -r requirements_dev.txt | ||
# pip install . | ||
|
||
# - name: Test import | ||
# run: python -c "import lidar; print('lidar import successful')" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
name: Linux build | ||
jobs: | ||
test-ubuntu: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["3.9", "3.10", "3.11", "3.12"] | ||
|
||
defaults: | ||
run: | ||
shell: bash -el {0} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup Python | ||
uses: conda-incubator/setup-miniconda@v3 | ||
with: | ||
auto-activate-base: true | ||
python-version: ${{ matrix.python-version }} | ||
channels: conda-forge,defaults | ||
channel-priority: true | ||
miniconda-version: latest | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Testing conda | ||
run: | | ||
conda info | ||
conda list | ||
- name: Install GDAL | ||
run: | | ||
# pip install --no-cache-dir Cython | ||
# pip install --find-links=https://girder.github.io/large_image_wheels --no-cache GDAL | ||
conda install gdal --yes | ||
conda install -c conda-forge mamba --yes | ||
mamba install -c conda-forge pyproj richdem lidar --yes | ||
# - name: Test GDAL installation | ||
# run: | | ||
# python -c "from osgeo import gdal" | ||
# gdalinfo --version | ||
|
||
- name: Install dependencies | ||
run: | | ||
pip install -r requirements.txt -r requirements_dev.txt | ||
pip install . | ||
# - name: Test import | ||
# run: python -c "import lidar; print('lidar import successful')" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.