Test reverse dependencies #318
This file contains hidden or 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
| name: Test reverse dependencies | |
| on: | |
| push: | |
| branches: [main] | |
| schedule: | |
| - cron: "0 0 * * 1,4" | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: Manual reverse dependency testing | |
| default: test | |
| required: false | |
| jobs: | |
| reverse_dependencies: | |
| name: Reverse dependency testing | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - uses: scientific-python/reverse-dependency-testing-action@main | |
| with: | |
| package_name: libpysal | |
| ignore: >- | |
| fine | |
| tigernet | |
| cenpy | |
| autoesda | |
| region | |
| greedy | |
| pysal | |
| mesa-geo | |
| spvcm | |
| neatnet | |
| include: >- | |
| mapclassify | |
| install: >- | |
| setuptools-scm | |
| h3-py | |
| hdbscan | |
| pandana | |
| astropy | |
| geodatasets | |
| bokeh | |
| dask-geopandas | |
| kdepy | |
| matplotlib | |
| statsmodels | |
| osmnx | |
| fast_hdbscan | |
| numba | |
| installation_command: >- | |
| pip install pulp -U --force-reinstall; pip install -e .; python -c 'import libpysal; libpysal.examples.fetch_all()'; | |
| fail_on_failure: true | |
| xfail: >- | |
| mgwr | |
| tobler | |
| geosnap | |
| pointpats | |
| verbose: true | |
| parallel: false |