Skip to content

Commit

Permalink
Merge pull request #47 from TeskaLabs/feature/export-as-string
Browse files Browse the repository at this point in the history
Version bump.
  • Loading branch information
ateska authored Jul 25, 2023
2 parents bd5b3b6 + 395a584 commit 12e5782
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@
extra_compile_args=[
"-std=c++17", # for std::string_view class that became standard in C++17
"-Wno-deprecated",
# NOTE Windows doesn't know how to handle "-Wno-deprecated"
] if sys.platform != "win32" else [
] if sys.platform != "win32" else [ # NOTE Windows doesn't know how to handle "-Wno-deprecated"
"/std:c++17",
],
define_macros=[("CYTHON_EXTERN_C", 'extern "C"')], # https://cython.readthedocs.io/en/latest/src/userguide/external_C_code.html#c-public-declarations
Expand All @@ -31,7 +30,7 @@

setup(
name='cysimdjson',
version="23.07",
version="23.08",
description='High-speed JSON parser',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 12e5782

Please sign in to comment.