Skip to content
Open
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
2 changes: 1 addition & 1 deletion doc/supported-platforms.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ on `www.python.org <https://www.python.org/downloads/macos/>`_.
Py2app supports the Python versions that are supported by the CPython core
developers and will add new versions of Python when they come available.

Currently py2app supports Python 3.8 upto and including 3.13.
Currently py2app supports Python 3.8 up to and including 3.13.
2 changes: 1 addition & 1 deletion src/py2app/bootstrap/_setup_importlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Py2AppExtensionLoader(MetaPathFinder):
def __init__(self, libdir: str) -> None:
self._libdir = libdir

# XXX: type annations would require importing typing
# XXX: type annotations would require importing typing
def find_spec(self, fullname, path, target=None): # type: ignore
ext_path = f"{self._libdir}/{fullname}.so"
if not os.path.exists(ext_path):
Expand Down