diff --git a/setup.py b/setup.py index 07c08bc..6d4e657 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ import pybind11 from pybind11.setup_helpers import Pybind11Extension, build_ext -__version__ = "4.1.2" +__version__ = "4.1.2.1" BASE_DIR = Path(__file__).resolve().parent include_dirs = [get_python_inc(), pybind11.get_include(), 'SEAL/native/src', 'SEAL/build/native/src'] @@ -85,7 +85,7 @@ def _copy_typing_files(self): author_email="topmaxz@protonmail.com", url="https://github.com/Huelse/SEAL-Python", description="Python wrapper for the Microsoft SEAL", - long_description=(BASE_DIR / "README.md").read_text(encoding="utf-8")[:528], + long_description=(BASE_DIR / "README.md").read_text(encoding="utf-8"), long_description_content_type="text/markdown", ext_modules=ext_modules, cmdclass={"build_ext": build_ext_with_typing}, diff --git a/src/wrapper.cpp b/src/wrapper.cpp index 5516afa..42fdf47 100644 --- a/src/wrapper.cpp +++ b/src/wrapper.cpp @@ -18,7 +18,7 @@ PYBIND11_MAKE_OPAQUE(std::vector); PYBIND11_MODULE(seal, m) { m.doc() = "Microsoft SEAL for Python, from https://github.com/Huelse/SEAL-Python"; - m.attr("__version__") = "4.1.2"; + m.attr("__version__") = "4.1.2.1"; py::bind_vector>( m, "VectorDouble", py::buffer_protocol(),