Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,17 +137,13 @@ jobs:
with:
path: ${{ steps.pip-cache-default.outputs.dir }}
key: ${{ runner.os }}-${{ runner.arch }}-pip-${{ matrix.python-version }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-pip-

- name: pip cache (Windows)
uses: actions/cache@v5
if: ${{ startsWith(runner.os, 'Windows') }}
with:
path: ${{ steps.pip-cache-windows.outputs.dir }}
key: ${{ runner.os }}-${{ runner.arch }}-pip-${{ matrix.python-version }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-pip-

- name: Install Build Dependencies
run: |
Expand Down Expand Up @@ -304,17 +300,13 @@ jobs:
with:
path: ${{ steps.pip-cache-default.outputs.dir }}
key: ${{ runner.os }}-${{ runner.arch }}-pip-${{ matrix.python-version }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-pip-

- name: pip cache (Windows)
uses: actions/cache@v5
if: ${{ startsWith(runner.os, 'Windows') }}
with:
path: ${{ steps.pip-cache-windows.outputs.dir }}
key: ${{ runner.os }}-${{ runner.arch }}-pip-${{ matrix.python-version }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-pip-
- name: Download zope.security wheel (Linux/macOS)
if: "!startsWith(runner.os, 'Windows')"
uses: actions/download-artifact@v8
Expand Down Expand Up @@ -411,17 +403,13 @@ jobs:
with:
path: ${{ steps.pip-cache-default.outputs.dir }}
key: ${{ runner.os }}-${{ runner.arch }}-pip-${{ matrix.python-version }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-pip-

- name: pip cache (Windows)
uses: actions/cache@v5
if: ${{ startsWith(runner.os, 'Windows') }}
with:
path: ${{ steps.pip-cache-windows.outputs.dir }}
key: ${{ runner.os }}-${{ runner.arch }}-pip-${{ matrix.python-version }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-pip-
- name: Download zope.security wheel
uses: actions/download-artifact@v8
with:
Expand Down Expand Up @@ -481,17 +469,13 @@ jobs:
with:
path: ${{ steps.pip-cache-default.outputs.dir }}
key: ${{ runner.os }}-${{ runner.arch }}-pip-${{ matrix.python-version }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-pip-

- name: pip cache (Windows)
uses: actions/cache@v5
if: ${{ startsWith(runner.os, 'Windows') }}
with:
path: ${{ steps.pip-cache-windows.outputs.dir }}
key: ${{ runner.os }}-${{ runner.arch }}-pip-${{ matrix.python-version }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-pip-
- name: Download zope.security wheel
uses: actions/download-artifact@v8
with:
Expand Down Expand Up @@ -558,17 +542,13 @@ jobs:
with:
path: ${{ steps.pip-cache-default.outputs.dir }}
key: ${{ runner.os }}-pip_manylinux-${{ matrix.image }}-${{ matrix.python-version }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-pip-

- name: pip cache (Windows)
uses: actions/cache@v5
if: ${{ startsWith(runner.os, 'Windows') }}
with:
path: ${{ steps.pip-cache-windows.outputs.dir }}
key: ${{ runner.os }}-pip_manylinux-${{ matrix.image }}-${{ matrix.python-version }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-pip-

- name: Update pip
run: pip install -U pip
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/src/zope/meta/c-code
[meta]
template = "c-code"
commit-id = "f472bcc5"
commit-id = "86c88a65"

[python]
with-windows = true
Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,7 @@ source = [

[tool.setuptools.dynamic]
readme = {file = ["README.rst", "CHANGES.rst"]}

[tool.zest-releaser]
create-wheel = false
upload-pypi = false
4 changes: 0 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# Generated with zope.meta (https://zopemeta.readthedocs.io/) from:
# https://github.com/zopefoundation/meta/tree/master/src/zope/meta/c-code

[zest.releaser]
create-wheel = no

[flake8]
doctests = 1
# F401 imported but unused
Expand Down
Loading