Closed tilsche closed 1 year ago
Tested today
pip install
on a directory with existing protobuf files with protoc
installed -> OK, detect version from module, no files generatedpip install
on a directory without existing files with protoc
installed -> OK, files generatedpip wheel
on a directory with existing files -> OK, wheel generated with protobuf filespip wheel
on a directory without existing files -> OK, wheel generated with new protobuf filespip install
on a built wheel on a system without protoc
installed -> OKpip install
on a directory with existing protobuf files without protoc
installed -> OKpip install
on a directory without existing files without protoc
installed -> SHOULD FAIL
fixes #162
This will need more testing. Maybe we need to use
out_dir
instead of the current working dir to find the module file. Nothing is documented, it all depends on the installation in which setup.py is invoked, local install, packaging, pip, or whatever...