Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
ateska committed Jul 25, 2023
1 parent a8b9ae4 commit 395a584
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 395a584

Please sign in to comment.