Commit d5c4843d authored by yan.yan's avatar yan.yan
Browse files

debug windows CI: disable pch

parent b45a1011
[build-system] [build-system]
requires = ["setuptools>=41.0", "wheel", "pccm>=0.2.8", "cumm>=0.1.6"] requires = ["setuptools>=41.0", "wheel", "pccm>=0.2.10", "cumm>=0.1.6"]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"
...@@ -34,7 +34,7 @@ REQUIRES_PYTHON = '>=3.6' ...@@ -34,7 +34,7 @@ REQUIRES_PYTHON = '>=3.6'
VERSION = None VERSION = None
# What packages are required for this module to be executed? # What packages are required for this module to be executed?
REQUIRED = ["pccm>=0.2.5", "pybind11>=2.6.0", "fire", "numpy", *deps] REQUIRED = ["pccm>=0.2.10", "pybind11>=2.6.0", "fire", "numpy", *deps]
# What packages are optional? # What packages are optional?
EXTRAS = { EXTRAS = {
...@@ -141,7 +141,8 @@ if disable_jit is not None and disable_jit == "1": ...@@ -141,7 +141,8 @@ if disable_jit is not None and disable_jit == "1":
PCCMExtension([cu, SpconvOps()], PCCMExtension([cu, SpconvOps()],
"spconv/core_cc", "spconv/core_cc",
Path(__file__).resolve().parent / "spconv", Path(__file__).resolve().parent / "spconv",
objects_folder="objects") objects_folder="objects",
disable_pch=True)
] ]
else: else:
cmdclass = { cmdclass = {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment