From daa4adef19f223d4bf8a03b0cda8ab7dec436954 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 16 Jan 2024 12:19:54 -0800 Subject: [PATCH] Fix error in matrix datasette-version, refs #1 --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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