Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@
strategy:
matrix:
os: ['ubuntu-latest']
environment-file: [ci/312.yml]
environment-file: [ci/314-latest.yml]
experimental: [false]
defaults:
run:
shell: bash -l {0}

steps:
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0 # Fetch all history for all branches and tags.

- name: Setup micromamba
uses: mamba-org/setup-micromamba@v1
uses: mamba-org/setup-micromamba@v2
with:
environment-file: ${{ matrix.environment-file }}
micromamba-version: 'latest'
Expand Down Expand Up @@ -54,4 +54,4 @@
branch: gh-pages
directory: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
force: true
force: true
21 changes: 11 additions & 10 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,18 @@
os: [ubuntu-latest]
environment-file: [
ci/311-oldest.yml,
ci/311.yml,
ci/312.yml,
ci/313.yml,
ci/313-dev.yml,
ci/311-latest.yml,
ci/312-latest.yml,
ci/313-latest.yml,
ci/314-latest.yml,
ci/314-dev.yml,
]
include:
- environment-file: ci/312.yml
- environment-file: ci/314-latest.yml
os: macos-15-intel # Intel
- environment-file: ci/312.yml
- environment-file: ci/314-latest.yml
os: macos-latest # Apple Silicon
- environment-file: ci/312.yml
- environment-file: ci/314-latest.yml
os: windows-latest
fail-fast: false

Expand All @@ -46,12 +47,12 @@

steps:
- name: checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0 # Fetch all history for all branches and tags.

- name: setup micromamba
uses: mamba-org/setup-micromamba@v1
uses: mamba-org/setup-micromamba@v2
with:
environment-file: ${{ matrix.environment-file }}
micromamba-version: 'latest'
Expand Down Expand Up @@ -88,7 +89,7 @@
--cov-report xml .

- name: codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/upload_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Set up python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: "3.x"

Expand All @@ -34,7 +34,7 @@ jobs:
twine check --strict dist/*

- name: Create Release Notes
uses: actions/github-script@v6
uses: actions/github-script@v8
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
Expand All @@ -47,4 +47,4 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}
password: ${{ secrets.PYPI_PASSWORD }}
1 change: 0 additions & 1 deletion ci/311.yml → ci/311-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ dependencies:
- tqdm
- codecov
- coverage
- pip
- pytest
- pytest-cov
- pytest-mpl
Expand Down
1 change: 0 additions & 1 deletion ci/311-oldest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ dependencies:
- tqdm=4.67
- codecov
- coverage
- pip
- pytest
- pytest-cov
- pytest-mpl
Expand Down
27 changes: 27 additions & 0 deletions ci/312-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: test
channels:
- conda-forge
dependencies:
- python=3.12
- astropy
- dask
- dask-geopandas
- geopandas
- h3-py<4
- joblib
- jupyterlab
- libpysal
- numpy
- pandas
- rasterio
- rasterstats
- scikit-learn
- scipy
- statsmodels
- tqdm
- codecov
- coverage
- pytest
- pytest-cov
- pytest-mpl
- pytest-xdist
1 change: 0 additions & 1 deletion ci/313.yml → ci/313-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ dependencies:
- tqdm
- codecov
- coverage
- pip
- pytest
- pytest-cov
- pytest-mpl
Expand Down
2 changes: 1 addition & 1 deletion ci/313-dev.yml → ci/314-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: test
channels:
- conda-forge
dependencies:
- python=3.13
- python=3.14
- astropy
- dask
- h3-py
Expand Down
7 changes: 2 additions & 5 deletions ci/312.yml → ci/314-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: test
channels:
- conda-forge
dependencies:
- python=3.12
- python=3.14
- astropy
- dask
- dask-geopandas
- geopandas
- h3-py<4
- h3-py
- joblib
- jupyterlab
- libpysal
Expand All @@ -21,7 +21,6 @@ dependencies:
- tqdm
- codecov
- coverage
- pip
- pytest
- pytest-cov
- pytest-mpl
Expand All @@ -38,5 +37,3 @@ dependencies:
- sphinx-autodoc2
- nbsphinx-link
- linkify-it-py
- pip:
- nbsphinx-link>=1.3.1 # not on conda yet
Loading