Skip to content

Commit

Permalink
Merge pull request #84 from bayer-science-for-a-better-life/python-311
Browse files Browse the repository at this point in the history
ci: test against python 3.11
  • Loading branch information
ap-- committed Nov 17, 2022
2 parents 0a95134 + 4fba98a commit 606c7ec
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/run_pytests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: paquo ci

on: [push, pull_request]
on:
push:
branches:
- main
pull_request: {}

env:
QUPATH_VERSION: 0.3.2
Expand All @@ -11,13 +15,15 @@ jobs:
name: pytest ${{ matrix.os }}::py${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 6
max-parallel: 7
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10"]
python-version: ["3.11"]
include:
# we'll test the python support on ubuntu
- os: ubuntu-latest
python-version: '3.10'
- os: ubuntu-latest
python-version: 3.9
- os: ubuntu-latest
Expand Down Expand Up @@ -70,9 +76,11 @@ jobs:
with:
python-version: 3.8
- name: Install dependencies
shell: bash
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
pip install ome_types || true
- name: Run mypy
run: |
mypy paquo
Expand Down
2 changes: 0 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,6 @@ dev =
pytest>=6
pytest-cov
mypy
ome-types
importlib_resources
typing_extensions

docs =
Expand Down

0 comments on commit 606c7ec

Please sign in to comment.