Skip to content

Commit e52adb1

Browse files
committed
Do not publish nogil wheels
1 parent 6846b28 commit e52adb1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ jobs:
3737
matrix:
3838
os: [ubuntu-24.04, ubuntu-24.04-arm, macos-14, windows-2025]
3939
env:
40+
CIBW_SKIP: "cp3??t-*"
4041
CIBW_ENVIRONMENT: >-
41-
CIBW_ENABLE="cpython-freethreading"
4242
PIP_CONFIG_SETTINGS="build_ext=-j4"
4343
CFLAGS="-g0"
4444
steps:

README.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,15 @@ the wild:
9090

9191
* Optional C extension module, for extra performance in CPython.
9292
* Async-framework-agnostic wrapper.
93-
* Thread-safe. Also has free-threading/nogil support.
93+
* Thread-safe. Also has free-threading/nogil support [#]_.
9494

9595
.. note::
9696

9797
Safe for concurrent use; internal locking ensures correctness. Sleeps are
9898
always done after internal state updates.
9999

100+
.. [#] "nogil" wheels are not published to PyPi, you have to install this
101+
package with ``--no-binary sonyflake-turbo`` flag.
100102
.. _Locks: https://docs.python.org/3/library/threading.html#lock-objects
101103

102104
Machine IDs

0 commit comments

Comments
 (0)