We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 440aec9 commit ef46681Copy full SHA for ef46681
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# Changelog #
2
3
+## Version 2.0.3 ##
4
+
5
+🛠️ Bug fixes:
6
7
+* [Issue #9](https://github.com/PlotPyStack/PlotPy/issues/9) - MacOS: `error: a space is required between consecutive right angle brackets (use '> >')`
8
9
## Version 2.0.2 ##
10
11
🛠️ Bug fixes:
setup.py
@@ -2,6 +2,7 @@
import os
import os.path as osp
+import platform
import sys
from distutils.core import setup
@@ -51,6 +52,8 @@ def compile_cython_extensions():
51
52
53
MACROS_CPP = [("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION")]
54
CFLAGS_CPP = ["/EHsc"] if is_msvc() else ["-Wall"]
55
+if platform.system() == "Darwin":
56
+ CFLAGS_CPP += ["-std=c++11"]
57
58
setup(
59
ext_modules=[
0 commit comments