Skip to content
This repository has been archived by the owner on Feb 4, 2023. It is now read-only.

Commit

Permalink
update setup
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Jan 9, 2021
1 parent ab83cdc commit 7773e52
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion setup.py
Expand Up @@ -203,7 +203,9 @@ def write_version():

if sys.platform.startswith("win"):
libraries_re2 = ['kernel32', '-std=c++11']
extra_compile_args_re2 = None
extra_compile_args_re2 = [
'/wd4100', '/wd4201', '/wd4456', '/wd4457', '/wd4702', '/wd4815',
'/utf-8', '/D', 'NOMINMAX']
elif sys.platform.startswith("darwin"):
libraries_re2 = None
extra_compile_args_re2 = ['-lpthread', '-stdlib=libc++', '-std=c++11',
Expand Down
2 changes: 1 addition & 1 deletion wrapclib/__init__.py
Expand Up @@ -5,7 +5,7 @@
:epkg:`Python` + some C libraries.
"""

__version__ = "0.1.63"
__version__ = "0.1.65"
__author__ = "Xavier Dupré"
__github__ = "https://github.com/sdpython/wrapclib"
__url__ = "http://www.xavierdupre.fr/app/wrapclib/helpsphinx/index.html"
Expand Down

0 comments on commit 7773e52

Please sign in to comment.