Skip to content

Commit

Permalink
Merge pull request #7 from radarhere/add-pypy-3.9
Browse files Browse the repository at this point in the history
tkinter is disabled for macOS PyPy
  • Loading branch information
hugovk committed Dec 13, 2022
2 parents c449ed5 + 0b624c6 commit cde82a1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,11 @@ function run_tests_in_repo {
}

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

function run_tests {
Expand Down

0 comments on commit cde82a1

Please sign in to comment.