Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Py 3.11b5. #132

Merged
merged 1 commit into from
Aug 26, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
- "3.8"
- "3.9"
- "3.10"
- "3.11.0-beta.3"
- "3.11.0-beta.5"
os: [ubuntu-20.04, macos-latest]
exclude:
- os: macos-latest
Expand Down Expand Up @@ -139,8 +139,8 @@ jobs:
pip install -U pip
pip install -U setuptools wheel twine cffi

- name: Build AccessControl (3.11.0-beta.3)
if: ${{ startsWith(matrix.python-version, '3.11.0-beta.3') }}
- name: Build AccessControl (3.11.0-beta.5)
if: ${{ startsWith(matrix.python-version, '3.11.0-beta.5') }}
run: |
# Next, build the wheel *in place*. This helps ccache, and also lets us cache the configure
# output (pip install uses a random temporary directory, making this difficult).
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
&& startsWith(github.ref, 'refs/tags')
&& startsWith(runner.os, 'Mac')
&& !startsWith(matrix.python-version, 'pypy')
&& !startsWith(matrix.python-version, '3.11.0-beta.3')
&& !startsWith(matrix.python-version, '3.11.0-beta.5')
env:
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
run: |
Expand All @@ -215,7 +215,7 @@ jobs:
- "3.8"
- "3.9"
- "3.10"
- "3.11.0-beta.3"
- "3.11.0-beta.5"
os: [ubuntu-20.04, macos-latest]
exclude:
- os: macos-latest
Expand Down Expand Up @@ -252,8 +252,8 @@ jobs:
with:
name: AccessControl-${{ runner.os }}-${{ matrix.python-version }}.whl
path: dist/
- name: Install AccessControl 3.11.0-beta.3
if: ${{ startsWith(matrix.python-version, '3.11.0-beta.3') }}
- name: Install AccessControl 3.11.0-beta.5
if: ${{ startsWith(matrix.python-version, '3.11.0-beta.5') }}
run: |
pip install -U wheel setuptools
# coverage has a wheel on PyPI for a future python version which is
Expand All @@ -266,7 +266,7 @@ jobs:
unzip -n dist/AccessControl-*whl -d src
pip install --pre -U -e .[test]
- name: Install AccessControl
if: ${{ !startsWith(matrix.python-version, '3.11.0-beta.3') }}
if: ${{ !startsWith(matrix.python-version, '3.11.0-beta.5') }}
run: |
pip install -U wheel setuptools
pip install -U 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 = "f483a5b8c47e80c4586c527ecfa59515f9fbfbfc"
commit-id = "d5b6c610d0ec7f0b8f6bbba49353eb89288f62b1"

[python]
with-appveyor = true
Expand Down
6 changes: 4 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,17 @@ For changes before version 3.0, see ``HISTORY.rst``.
5.4 (unreleased)
----------------

- Add support for Python 3.11 (as of 3.11.0a6).
- Add support for Python 3.11 (as of 3.11.0b5).

- Support ``default`` argument in ``next`` built-in function.
(`#131 <https://github.com/zopefoundation/AccessControl/pull/131>`_)


5.3.1 (2022-03-29)
------------------

- Prevent race condition in guarded_import
(see `#123 <https://github.com/zopefoundation/AccessControl/issues/123>`_)
(`#123 <https://github.com/zopefoundation/AccessControl/issues/123>`_)


5.3 (2022-02-25)
Expand Down