Skip to content
This repository was archived by the owner on Oct 8, 2024. It is now read-only.

Commit cde82a1

Browse files
authored
Merge pull request #7 from radarhere/add-pypy-3.9
tkinter is disabled for macOS PyPy
2 parents c449ed5 + 0b624c6 commit cde82a1

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

config.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,11 @@ function run_tests_in_repo {
144144
}
145145

146146
EXP_CODECS="jpg jpg_2000 libtiff zlib"
147-
EXP_MODULES="freetype2 littlecms2 pil tkinter webp"
147+
if [[ "$MB_PYTHON_VERSION" == pypy3.* ]] && [ -n "$IS_MACOS" ]; then
148+
EXP_MODULES="freetype2 littlecms2 pil webp"
149+
else
150+
EXP_MODULES="freetype2 littlecms2 pil tkinter webp"
151+
fi
148152
EXP_FEATURES="fribidi harfbuzz libjpeg_turbo raqm transp_webp webp_anim webp_mux xcb"
149153

150154
function run_tests {

0 commit comments

Comments
 (0)