seal-python 4.1.2.post1__tar.gz → 4.1.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: seal-python
3
- Version: 4.1.2.post1
3
+ Version: 4.1.2.1
4
4
  Summary: Python wrapper for the Microsoft SEAL
5
5
  Home-page: https://github.com/Huelse/SEAL-Python
6
6
  Author: Huelse
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: seal-python
3
- Version: 4.1.2.post1
3
+ Version: 4.1.2.1
4
4
  Summary: Python wrapper for the Microsoft SEAL
5
5
  Home-page: https://github.com/Huelse/SEAL-Python
6
6
  Author: Huelse
@@ -10,7 +10,7 @@ from distutils.sysconfig import get_python_inc
10
10
  import pybind11
11
11
  from pybind11.setup_helpers import Pybind11Extension, build_ext
12
12
 
13
- __version__ = "4.1.2-1"
13
+ __version__ = "4.1.2.1"
14
14
  BASE_DIR = Path(__file__).resolve().parent
15
15
 
16
16
  include_dirs = [get_python_inc(), pybind11.get_include(), 'SEAL/native/src', 'SEAL/build/native/src']
@@ -18,7 +18,7 @@ PYBIND11_MAKE_OPAQUE(std::vector<std::int64_t>);
18
18
  PYBIND11_MODULE(seal, m)
19
19
  {
20
20
  m.doc() = "Microsoft SEAL for Python, from https://github.com/Huelse/SEAL-Python";
21
- m.attr("__version__") = "4.1.2-1";
21
+ m.attr("__version__") = "4.1.2.1";
22
22
 
23
23
  py::bind_vector<std::vector<double>>(
24
24
  m, "VectorDouble", py::buffer_protocol(),
File without changes