From a1dc58686dd46949b5d7993f25c5fb867d85d6a8 Mon Sep 17 00:00:00 2001 From: Jared Lumpe Date: Sun, 1 Dec 2024 03:33:54 -0800 Subject: [PATCH] Fix CI setup --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4661a52..fc8a255 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: include: # Also test with SQLALchemy >=1.4, <2 - python-version: 3.12 - - sqla-version: "~=1.4" + sqla-version: "~=1.4" steps: - uses: actions/checkout@v4 @@ -32,7 +32,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install setuptools pytest sqlalchemy{{ matrix.sqla-version }} + python -m pip install setuptools pytest sqlalchemy${{ matrix.sqla-version }} - name: Build package run: |