Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fbxiang committed Nov 3, 2023
1 parent 50f8a2c commit e4c1bc3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 51 deletions.
45 changes: 0 additions & 45 deletions python/CMakeLists.txt.old

This file was deleted.

2 changes: 1 addition & 1 deletion python/py_package/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ __all__ = [

def set_log_level(level: str) -> None:
pass
__version__ = '3.0.0.dev20231102'
__version__ = '3.0.0.dev20231103'
SceneConfig = sapien.pysapien.physx.PhysxSceneConfig
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ def build_pinocchio(self, ext):
extdir = os.path.abspath(os.path.dirname(original_full_path))
extdir = os.path.join(extdir, self.distribution.get_name())
cmake_args = [
"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=" + extdir,
"-DPYTHON_EXECUTABLE=" + sys.executable,
f"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=$<1:{extdir}>",
f"-DPYTHON_EXECUTABLE={sys.executable}",
]
if args.debug:
cfg = "Debug"
Expand Down Expand Up @@ -191,8 +191,8 @@ def build_pybind(self, ext):
extdir = os.path.abspath(os.path.dirname(original_full_path))
extdir = os.path.join(extdir, self.distribution.get_name())
cmake_args = [
"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=" + extdir,
"-DPYTHON_EXECUTABLE=" + sys.executable,
f"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=$<1:{extdir}>",
f"-DPYTHON_EXECUTABLE={sys.executable}",
]
if args.debug:
cfg = "Debug"
Expand Down

0 comments on commit e4c1bc3

Please sign in to comment.