Skip to content
Draft
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 .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: setup micromamba
uses: mamba-org/setup-micromamba@v2
with:
environment-file: ci/envs/313-latest.yaml
environment-file: ci/envs/314-latest.yaml
create-args: >-
mypy

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_docstrings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: setup micromamba
uses: mamba-org/setup-micromamba@v2
with:
environment-file: ci/envs/313-latest.yaml
environment-file: ci/envs/314-latest.yaml

- name: Install momepy
run: pip install .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_user_guide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: setup micromamba
uses: mamba-org/setup-micromamba@v2
with:
environment-file: ci/envs/313-latest.yaml
environment-file: ci/envs/314-latest.yaml

- name: Install momepy
run: pip install .
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,14 @@ jobs:
- ci/envs/311-latest.yaml
- ci/envs/312-latest.yaml
- ci/envs/313-latest.yaml
- ci/envs/313-dev.yaml
- ci/envs/314-dev.yaml
- ci/envs/314-latest.yaml
include:
- environment-file: ci/envs/313-latest.yaml
- environment-file: ci/envs/314-latest.yaml
os: macos-15-intel # Intel
- environment-file: ci/envs/313-latest.yaml
- environment-file: ci/envs/314-latest.yaml
os: macos-latest # Apple Silicon
- environment-file: ci/envs/313-latest.yaml
- environment-file: ci/envs/314-latest.yaml
os: windows-latest
- environment-file: ci/envs/313-min.yaml
os: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion ci/envs/313-dev.yaml → ci/envs/314-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: test
channels:
- conda-forge
dependencies:
- python=3.13
- python=3.14
- packaging
- tqdm
- numba
Expand Down
35 changes: 35 additions & 0 deletions ci/envs/314-latest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: test
channels:
- conda-forge
dependencies:
- python=3.14
- geopandas
- inequality
- libpysal>=4.12.0
- mapclassify
- networkx
- osmnx
- packaging
- pandas!=1.5.0
- shapely>=2
- esda
- tqdm
# - numba
- rioxarray
- xvec
# testing
- codecov
- pytest
- pytest-cov
# user guide testing
- dask
- inequality
- jupyter
- matplotlib
- osmnx
- clustergram
- bokeh
- geopy
- ipywidgets
- Iprogress
- pytest-doctestplus
Loading