Bug
Building the openai-harmony wheel from the PyPI sdist fails:
FileNotFoundError: [Errno 2] No such file or directory: '../README.md'
The build system references ../README.md (parent directory), which exists when building from a git clone of the monorepo but not when building from an extracted sdist tarball.
Steps to reproduce
pip wheel --no-binary :all: openai-harmony
Expected behavior
The wheel should build from the sdist without requiring the monorepo parent directory.
Environment
- Python 3.13.5
- pip 25.1.1
- Linux riscv64 (BananaPi F3, SpacemiT K1)
Suggested fix
Either include README.md in the sdist, or use a conditional path that falls back gracefully when the parent README is absent.
Bug
Building the
openai-harmonywheel from the PyPI sdist fails:The build system references
../README.md(parent directory), which exists when building from a git clone of the monorepo but not when building from an extracted sdist tarball.Steps to reproduce
Expected behavior
The wheel should build from the sdist without requiring the monorepo parent directory.
Environment
Suggested fix
Either include
README.mdin the sdist, or use a conditional path that falls back gracefully when the parent README is absent.