Files
dependencies/python3-dev/python3_dev/__init__.py
github-actions[bot] 69ede13e40 update shim packages
2026-03-01 23:20:13 +00:00

10 lines
304 B
Python

import os
DIR = os.path.join(os.path.dirname(__file__), "install")
INCLUDE_DIR = os.path.join(DIR, "include")
def smoketest():
assert os.path.isfile(os.path.join(INCLUDE_DIR, "Python.h")), "Python.h not found"
assert os.path.isfile(os.path.join(INCLUDE_DIR, "pyconfig.h")), "pyconfig.h not found"