Skip to content

Commit

Permalink
ci: fix Windows setuptools / cffi breakage (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver authored Aug 28, 2024
1 parent 149c88e commit 8dfa5a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .meta.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8dfa5a3

Please sign in to comment.