Skip to content

Commit 7f35840

Browse files
committed
upgrade to SEAL 4.0
1 parent c11cca4 commit 7f35840

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.gitmodules

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[submodule "SEAL"]
22
path = SEAL
3-
url = https://github.com/microsoft/SEAL.git
3+
url = https://github.com/Desilo/SEAL.git
44
[submodule "pybind11"]
55
path = pybind11
66
url = https://github.com/pybind/pybind11.git

SEAL

Submodule SEAL updated 128 files

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
# include directories
1212
include_dirs = [py_include_dir, './pybind11/include', './SEAL/native/src', './SEAL/build/native/src']
1313
# library path
14-
extra_objects = ['./SEAL/build/lib/libseal-3.7.a']
14+
extra_objects = ['./SEAL/build/lib/libseal-4.0.a']
1515
# available wrapper: src/wrapper.cpp, src/wrapper_with_pickle.cpp
1616
wrapper_file = 'src/wrapper.cpp'
1717

1818
if(platform.system() == "Windows"):
1919
cpp_args[0] = '/std:c++latest' # /std:c++1z
20-
extra_objects[0] = './SEAL/build/lib/Release/seal-3.7.lib'
20+
extra_objects[0] = './SEAL/build/lib/Release/seal-4.0.lib'
2121

2222
if not os.path.exists(extra_objects[0]):
2323
print('Can not find the seal lib,')
@@ -37,7 +37,7 @@
3737

3838
setup(
3939
name='seal',
40-
version='3.7',
40+
version='4.0',
4141
author='Desilo',
4242
author_email='[email protected]',
4343
description='Python wrapper for the Microsoft SEAL',

0 commit comments

Comments
 (0)