Skip to content

Commit c12790f

Browse files
committed
Update version to 4.1.2.1
1 parent e93a1e9 commit c12790f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import pybind11
1111
from pybind11.setup_helpers import Pybind11Extension, build_ext
1212

13-
__version__ = "4.1.2"
13+
__version__ = "4.1.2.1"
1414
BASE_DIR = Path(__file__).resolve().parent
1515

1616
include_dirs = [get_python_inc(), pybind11.get_include(), 'SEAL/native/src', 'SEAL/build/native/src']
@@ -85,7 +85,7 @@ def _copy_typing_files(self):
8585
author_email="topmaxz@protonmail.com",
8686
url="https://github.com/Huelse/SEAL-Python",
8787
description="Python wrapper for the Microsoft SEAL",
88-
long_description=(BASE_DIR / "README.md").read_text(encoding="utf-8")[:528],
88+
long_description=(BASE_DIR / "README.md").read_text(encoding="utf-8"),
8989
long_description_content_type="text/markdown",
9090
ext_modules=ext_modules,
9191
cmdclass={"build_ext": build_ext_with_typing},

src/wrapper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ PYBIND11_MAKE_OPAQUE(std::vector<std::int64_t>);
1818
PYBIND11_MODULE(seal, m)
1919
{
2020
m.doc() = "Microsoft SEAL for Python, from https://github.com/Huelse/SEAL-Python";
21-
m.attr("__version__") = "4.1.2";
21+
m.attr("__version__") = "4.1.2.1";
2222

2323
py::bind_vector<std::vector<double>>(
2424
m, "VectorDouble", py::buffer_protocol(),

0 commit comments

Comments
 (0)