tkinter in 7.3.10
I find that I'm unable to import tkinter in PyPy 7.3.10 in the same way that I could in PyPy 7.3.9.
Running the following in GitHub Actions,
name: Wheels
on: [push]
jobs:
build:
name: ${{ matrix.python }}
runs-on: "macos-latest"
strategy:
matrix:
python: [ "pypy3.8-v7.3.9-osx64", "pypy3.8-v7.3.10-macos_x86_64" ]
steps:
- name: Build Wheel
run: |
wget -nv https://downloads.python.org/pypy/${{ matrix.python }}.tar.bz2
tar -jxf ${{ matrix.python }}.tar.bz2
./${{ matrix.python }}/bin/pypy3 -c "import tkinter"
it works fine on PyPy 7.3.9, but in PyPy 7.3.10, I get
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/Users/runner/work/pillow-wheels/pillow-wheels/pypy3.8-v7.3.10-macos_x86_64/lib/pypy3.8/tkinter/__init__.py", line 41, in <module>
import _tkinter # If this fails your Python may not be configured for Tk
File "/Users/runner/work/pillow-wheels/pillow-wheels/pypy3.8-v7.3.10-macos_x86_64/lib/pypy3.8/_tkinter/__init__.py", line 14, in <module>
from .tklib_cffi import ffi as tkffi, lib as tklib
ModuleNotFoundError: No module named '_tkinter.tklib_cffi'
Any thoughts?