Skip to content

Commit

Permalink
add pypy3.9 exclusion for Django 5
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesobrien committed Mar 5, 2024
1 parent cbeff34 commit 008c957
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/test.yaml
Expand Up @@ -13,15 +13,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.8, 3.9, "3.10", "3.11", "pypy3.9" ]
django: [ 32, 41, 42, 50]
python-version: [ "3.8", "3.9", "3.10", "3.11", "pypy3.9" ]
django: [ "32", "41", "42", "50" ]
exclude:
- python-version: "3.11"
django: 32
- python-version: 3.8
django: 50
- python-version: 3.9
django: 50
django: "32"
- python-version: "3.8"
django: "50"
- python-version: "3.9"
django: "50"
- python-version: "pypy3.9"
django: "50"

services:
postgres:
Expand Down

0 comments on commit 008c957

Please sign in to comment.