Skip to content

Commit

Permalink
- fix installation order for cffi
Browse files Browse the repository at this point in the history
  • Loading branch information
dataflake committed May 29, 2024
1 parent ca1826b commit db81a53
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ jobs:
if: matrix.python-version == '3.13'
run: |
pip install -U pip
pip install -U --pre cffi
pip install -U "setuptools<69" wheel twine
pip install --pre cffi
- name: Install Build Dependencies
if: matrix.python-version != '3.13'
run: |
Expand Down Expand Up @@ -318,11 +318,11 @@ jobs:
with:
name: AccessControl-${{ runner.os }}-${{ matrix.python-version }}.whl
path: dist/
- name: Install AccessControl 3.13 ${{ matrix.python-version }}
- name: Install AccessControl ${{ matrix.python-version }}
if: matrix.python-version == '3.13'
run: |
pip install -U --pre cffi
pip install -U wheel "setuptools<69"
pip install --pre cffi
# coverage might have a wheel on PyPI for a future python version which is
# not ABI compatible with the current one, so build it from sdist:
pip install -U --no-binary :all: coverage
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 = "9f78efd3"
commit-id = "13719585"

[python]
with-appveyor = false
Expand Down

0 comments on commit db81a53

Please sign in to comment.