Skip to content

Commit

Permalink
immutables v0.17
Browse files Browse the repository at this point in the history
Fixes
=====

* Add missing name in table [project] in 'pyproject.toml'. (#78)
  (by @mvaled in 80b537f for #78)
  • Loading branch information
elprans committed Mar 26, 2022
1 parent 5b135af commit fd2066d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 28 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/release-trigger.yml

This file was deleted.

7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
with:
github_token: ${{ secrets.RELEASE_BOT_GITHUB_TOKEN }}
version_file: immutables/_version.py
require_team: Release Managers
require_approval: no
version_line_pattern: |
__version__\s*=\s*(?:['"])([[:PEP440:]])(?:['"])
Expand Down Expand Up @@ -68,6 +70,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
cibw_python: ["cp36-*", "cp37-*", "cp38-*", "cp39-*", "cp310-*"]
cibw_arch: [auto]
include:
- os: ubuntu-latest
Expand All @@ -87,10 +90,10 @@ jobs:
with:
platforms: arm64

- uses: pypa/cibuildwheel@v2.0.1
- uses: pypa/cibuildwheel@v2.3.1
env:
CIBW_BUILD_VERBOSITY: 1
CIBW_BUILD: "cp36-* cp37-* cp38-* cp39-*"
CIBW_BUILD: ${{ matrix.cibw_python }}
CIBW_ARCHS: ${{ matrix.cibw_arch }}
CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/manylinux1_x86_64
CIBW_MANYLINUX_I686_IMAGE: quay.io/pypa/manylinux1_i686
Expand Down
2 changes: 1 addition & 1 deletion immutables/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
# supported platforms, publish the packages on PyPI, merge the PR
# to the target branch, create a Git tag pointing to the commit.

__version__ = '0.17.dev0'
__version__ = '0.17'

0 comments on commit fd2066d

Please sign in to comment.