From 395a584368c9edfe30ceabd66a47dad553bb0e5b Mon Sep 17 00:00:00 2001 From: Ales Teska Date: Tue, 25 Jul 2023 11:19:58 +0200 Subject: [PATCH] Version bump. --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 86af039..df6c932 100644 --- a/setup.py +++ b/setup.py @@ -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 @@ -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',