From dedcc19f517c08899cbe730783cb900e0c6111c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Gr=C3=B6nholm?= Date: Mon, 11 Mar 2024 20:17:37 +0200 Subject: [PATCH] Worked around a bizarre PyPy+Windows issue with bdist_egg --- tests/testdata/unicode.dist/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/testdata/unicode.dist/setup.py b/tests/testdata/unicode.dist/setup.py index 89c4be12..ec66d1e6 100644 --- a/tests/testdata/unicode.dist/setup.py +++ b/tests/testdata/unicode.dist/setup.py @@ -7,4 +7,5 @@ version="0.1", description="A testing distribution \N{SNOWMAN}", packages=["unicodedist"], + zip_safe=True, )