Skip to content

Commit

Permalink
Fix pybind lib python version
Browse files Browse the repository at this point in the history
  • Loading branch information
rdoddanavar committed Jan 15, 2025
1 parent 06f2b95 commit cfa2859
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/pyinstaller_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
if os.name == "posix":

# Bundle pybind11 module
binaries = [("build/src/model.cpython-310-x86_64-linux-gnu.so", ".")]
binaries = [("build/src/model.cpython-312-x86_64-linux-gnu.so", ".")]

elif os.name == "nt":

# Bundle pybind11 module
binaries = [("build/src/model.cp310-win_amd64.pyd", ".")]
binaries = [("build/src/model.cp312-win_amd64.pyd", ".")]

# Bundle libstdc++ from mingw64
compilerPath = util_misc.get_cmake_cache("CMAKE_CXX_COMPILER")
Expand Down

0 comments on commit cfa2859

Please sign in to comment.