Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down Expand Up @@ -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},
Expand Down
2 changes: 1 addition & 1 deletion src/wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ PYBIND11_MAKE_OPAQUE(std::vector<std::int64_t>);
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<std::vector<double>>(
m, "VectorDouble", py::buffer_protocol(),
Expand Down
Loading