Skip to content

Commit

Permalink
Upgrade PYBIND11 2.8.1 -> 2.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ixje committed May 17, 2022
1 parent e677af9 commit 6982178
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bindings/python/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if (NOT pybind11_FOUND)
FetchContent_Declare(
pybind11
GIT_REPOSITORY https://github.com/pybind/pybind11.git
GIT_TAG v2.8.1
GIT_TAG v2.9.2
)
FetchContent_MakeAvailable(pybind11)
endif()
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/python-bindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ py::int_ to_py_int(const BigInteger& value, bool is_signed = true, bool is_bigen
return py::reinterpret_steal<py::int_>(obj);
}

static constexpr auto VERSION_BINDINGS = "1.2.6";
static constexpr auto VERSION_BINDINGS = "1.2.7";

PYBIND11_MODULE(pybiginteger, m) {
m.doc() = "A C++ port of the C# BigInteger class";
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ def build_extension(self, ext):
author='Erik van den Brink (ixje), merl111',
author_email='[email protected]',
name='pybiginteger',
python_requires='>=3.8.*,<3.10',
description="C++ port of the C# BigInteger class",
long_description=readme,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 6982178

Please sign in to comment.