Skip to content

Commit ed4ec25

Browse files
committed
immutables v0.17
Fixes ===== * Add missing name in table [project] in 'pyproject.toml'. (#78) (by @mvaled in 80b537f for #78)
1 parent 5b135af commit ed4ec25

File tree

3 files changed

+5
-30
lines changed

3 files changed

+5
-30
lines changed

Diff for: .github/workflows/release-trigger.yml

-25
This file was deleted.

Diff for: .github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
with:
2020
github_token: ${{ secrets.RELEASE_BOT_GITHUB_TOKEN }}
2121
version_file: immutables/_version.py
22+
require_team: Release Managers
23+
require_approval: no
2224
version_line_pattern: |
2325
__version__\s*=\s*(?:['"])([[:PEP440:]])(?:['"])
2426
@@ -87,13 +89,11 @@ jobs:
8789
with:
8890
platforms: arm64
8991

90-
- uses: pypa/cibuildwheel@v2.0.1
92+
- uses: pypa/cibuildwheel@v2.3.1
9193
env:
9294
CIBW_BUILD_VERBOSITY: 1
93-
CIBW_BUILD: "cp36-* cp37-* cp38-* cp39-*"
95+
CIBW_BUILD: "cp36-* cp37-* cp38-* cp39-* cp310-*"
9496
CIBW_ARCHS: ${{ matrix.cibw_arch }}
95-
CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/manylinux1_x86_64
96-
CIBW_MANYLINUX_I686_IMAGE: quay.io/pypa/manylinux1_i686
9797
CIBW_SKIP: "pp*"
9898
CIBW_TEST_EXTRAS: "test"
9999
CIBW_TEST_COMMAND: "cd .. && python {project}/tests/__init__.py"

Diff for: immutables/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
# supported platforms, publish the packages on PyPI, merge the PR
1111
# to the target branch, create a Git tag pointing to the commit.
1212

13-
__version__ = '0.17.dev0'
13+
__version__ = '0.17'

0 commit comments

Comments
 (0)