ci: test against python 3.12, drop 3.7 #46
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
name: Rasterstats Python package | |
on: | |
pull_request: | |
push: | |
branches: [ $default-branch ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install pip --upgrade | |
python -m pip install -e .[dev] | |
- name: Test all packages | |
run: | | |
pytest | |
- name: Test with older packages and older pythons | |
# wheel only available for python <=3.11 | |
if: contains(fromJson('["3.8", "3.9", "3.10", "3.11"]'), ${{ matrix.python-version }}) | |
run: | | |
python -m pip uninstall --yes geopandas | |
python -m pip install "fiona<1.9" "shapely<2.0" | |
pytest |