Skip to content

Commit 9fc2af6

Browse files
updating setup.py as well
1 parent 723773a commit 9fc2af6

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ src/*.pyd
3636
# Others
3737
*.zip
3838
build
39+
dist
40+
seal.egg-info
3941
*.lib
4042
*.pyd
4143
*.pyc
4244
temp
45+
env

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
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.6.lib'
20+
extra_objects[0] = './SEAL/build/lib/Release/seal-3.7.lib'
2121

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

3838
setup(
3939
name='seal',
40-
version='3.6',
41-
author='Huelse',
42-
author_email='[email protected]',
40+
version='3.7',
41+
author='Desilo',
42+
author_email='[email protected]',
4343
description='Python wrapper for the Microsoft SEAL',
44-
url='https://github.com/Huelse/SEAL-Python',
44+
url='https://github.com/Desilo/SEAL-Python',
4545
license='MIT',
4646
ext_modules=ext_modules,
4747
)

0 commit comments

Comments
 (0)