Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ jobs:
# expect that some people will compile it themselves with that setting.
CPPFLAGS: "-Ofast -UNDEBUG -Wall"
CFLAGS: "-Ofast -UNDEBUG -Wall"
# On Windows this step also produces the wheels we distribute, so
# link the C++ runtime statically, the way the Appveyor builds did
# through 3.3.0. Without it, _greenlet.pyd imports MSVCP140.dll,
# which no Windows CPython distribution ships. setup.py ignores
# this everywhere else.
GREENLET_STATIC_RUNTIME: "1"
- name: Install greenlet (Mac)
if: startsWith(runner.os, 'Mac')
run: |
Expand Down
7 changes: 6 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
3.5.5 (unreleased)
==================

- Nothing changed yet.
- Link the C++ runtime statically into the Windows wheels again, as the
Appveyor builds did through 3.3.0. Since 3.3.1 ``_greenlet.pyd``
imported ``MSVCP140.dll``, which no Windows CPython distribution ships,
so importing greenlet failed on machines without the Visual C++
redistributable. See `issue 525
<https://github.com/python-greenlet/greenlet/issues/525>`_.


3.5.4 (2026-07-22)
Expand Down
Loading