Skip to content

Commit ba765ff

Browse files
committed
Update version to 4.1.2-1
1 parent e93a1e9 commit ba765ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
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']

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)