Revision 2cfc315a469621c5980176030b88af92c95e9abc authored by Steven Johnson on 28 November 2022, 22:11:35 UTC, committed by GitHub on 28 November 2022, 22:11:35 UTC
* Tweak the import paths in Python apps & tests

This change makes it a bit easier for me to transform the import paths when merging into Google: we can't set PYTHONPATH, and calling `sys.path.append()` is frowned upon. This should have no effect on the GitHub repo but will make my life easier downstream.

* More tweaks

* force builds

* Update Generator.cpp
1 parent 73c61c3
Raw File
pyproject.toml
[build-system]
requires = [
  "setuptools>=43",
  "wheel",
  "scikit-build",
  "pybind11==2.6.2",
  "cmake>=3.22",
  "ninja; platform_system!='Windows'"
]
build-backend = "setuptools.build_meta"
back to top