Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Run tests also on python 3.11 #212

Merged
merged 6 commits into from
Oct 20, 2023
Merged
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
9 changes: 4 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
shapely-version: ["1.8.0", "1.8.4", "2.0"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
shapely-version: ["1.8.5", "2.0"]
fail-fast: false
steps:
- uses: actions/checkout@v3
Expand All @@ -40,12 +40,11 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flit codecov pytest flake8
- name: Install shapely version from matrix
run: python -m pip install "shapely==${{ matrix.shapely-version }}"
- name: Install package dependencies
run: flit install --deps develop
- name: Overrule shapely version from matrix
run: python -m pip install "shapely==${{ matrix.shapely-version }}"
- name: Lint with flake8
run: flake8 topojson
continue-on-error: true
Expand Down