Skip to content

Commit

Permalink
use latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
JanCaha committed Aug 4, 2024
1 parent eb76a6b commit 83e6795
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[submodule "pybind11"]
path = pybind11
url = https://github.com/pybind/pybind11.git
branch = v2.11
branch = v2.13
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ build_type = "Release"
source_path = "."
build_args = ["-j"]
install_components = ["python_modules"]
options = { "WITH_PY_STUBS:BOOL" = "On" }

[tool.py-build-cmake.cmake.options]
"WITH_PY_STUBS:BOOL" = "On"

[tool.py-build-cmake.stubgen]
args = ["-v"]
Expand Down
4 changes: 2 additions & 2 deletions scripts/install_and_test_locally.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ if [ -d "$VENV_FOLDER" ];then
else
echo "Creating the VENV $VENV_FOLDER."

python3 -m venv $VENV_FOLDER --symlinks # --system-site-packages
python3 -m venv $VENV_FOLDER # --symlinks # --system-site-packages
source $VENV_FOLDER/bin/activate
pip install pytest wheel py-build-cmake
pip install pytest wheel build
deactivate
fi

Expand Down

0 comments on commit 83e6795

Please sign in to comment.