From 8dfa5a39bcdd3f54e75d7aaafad3c966aa75b7b7 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Wed, 28 Aug 2024 18:08:17 -0400 Subject: [PATCH] ci: fix Windows setuptools / cffi breakage (#207) --- .github/workflows/tests.yml | 4 ++-- .meta.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4ef58ac..300b5f9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -340,7 +340,7 @@ jobs: unzip -n dist/persistent-*whl -d src # Use "--pre" here because dependencies with support for this future # Python release may only be available as pre-releases - pip install --pre -U -e .[test] + pip install --pre -e .[test] - name: Install persistent if: matrix.python-version != '3.13' run: | @@ -351,7 +351,7 @@ jobs: # when we ask it to load tests from that directory. This # might also save some build time? unzip -n dist/persistent-*whl -d src - pip install -U -e .[test] + pip install -e .[test] - name: Run tests with C extensions if: ${{ !startsWith(matrix.python-version, 'pypy') }} run: | diff --git a/.meta.toml b/.meta.toml index ab72d76..e462d9b 100644 --- a/.meta.toml +++ b/.meta.toml @@ -2,7 +2,7 @@ # https://github.com/zopefoundation/meta/tree/master/config/c-code [meta] template = "c-code" -commit-id = "4eec7859" +commit-id = "a1e05e74" [python] with-windows = true