diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a2e5c5b..10164ce 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 }} @@ -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