Skip to content

Commit

Permalink
Restore speedups.c in source distribution.
Browse files Browse the repository at this point in the history
  • Loading branch information
aaugustin committed Apr 6, 2023
1 parent f516cf5 commit f55c141
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ jobs:
sdist:
name: Build source distribution and architecture-independent wheel
runs-on: ubuntu-latest
env:
BUILD_EXTENSION: no
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand All @@ -28,6 +26,8 @@ jobs:
- name: Install wheel
run: pip install wheel
- name: Build wheel
env:
BUILD_EXTENSION: no
run: python setup.py bdist_wheel
- name: Save wheel
uses: actions/upload-artifact@v3
Expand All @@ -37,8 +37,6 @@ jobs:
wheels:
name: Build architecture-specific wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
BUILD_EXTENSION: yes
strategy:
matrix:
os:
Expand All @@ -60,6 +58,7 @@ jobs:
- name: Build wheels
uses: pypa/cibuildwheel@v2.12.1
env:
BUILD_EXTENSION: yes
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
CIBW_ARCHS_LINUX: "auto aarch64"
CIBW_SKIP: cp36-*
Expand Down
10 changes: 10 additions & 0 deletions docs/project/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,16 @@ fixing regressions shortly after a release.
Only documented APIs are public. Undocumented, private APIs may change without
notice.

11.0.1
------

*April 6, 2023*

Bug fixes
.........

* Restored the C extension in the source distribution.

11.0
----

Expand Down
2 changes: 1 addition & 1 deletion src/websockets/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

released = True

tag = version = commit = "11.0"
tag = version = commit = "11.0.1"


if not released: # pragma: no cover
Expand Down

0 comments on commit f55c141

Please sign in to comment.