Skip to content

Commit

Permalink
Fix error in matrix datasette-version, refs #1
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Jan 16, 2024
1 parent da59895 commit daa4ade
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
datasette-version: ["<=1.0a0", ">=1.0a0", "https://codeload.github.com/simonw/datasette/zip/7a5adb592ae6674a2058639c66e85eb1b49448fb"]
datasette-version: ["datasette<=1.0a0", "datasette>=1.0a0", "https://codeload.github.com/simonw/datasette/zip/7a5adb592ae6674a2058639c66e85eb1b49448fb"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -22,7 +22,7 @@ jobs:
- name: Install dependencies
run: |
pip install -e '.[test]'
pip install 'datasette${{ matrix.datasette-version }}'
pip install '${{ matrix.datasette-version }}'
- name: Run tests
run: |
pytest

0 comments on commit daa4ade

Please sign in to comment.