Skip to content

Commit 9d2cab5

Browse files
committed
Fix for pywrapper.cpp
1 parent 173a0ec commit 9d2cab5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ def finalize_options(self):
175175
cmake_opts.extend(self.define)
176176
cmake_build_type[0] = self.build_type
177177
cmake_opts.extend([('PYTHON_INSTALL_PATH', path.join(os.getcwd(), self.install_platlib))])
178-
cmake_opts.extend([('PYTHON_INSTALL_HEADER_PATH',
179-
path.join(os.getcwd(), self.install_headers))])
178+
#cmake_opts.extend([('PYTHON_INSTALL_HEADER_PATH',
179+
# path.join(os.getcwd(), self.install_headers))])
180180

181181
def cmake_install(self):
182182
source_dir = path.dirname(path.realpath(__file__))

symengine/lib/pywrapper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include <symengine/pywrapper.h>
1+
#include "pywrapper.h"
22

33
#if PY_MAJOR_VERSION >= 3
44
#define PyInt_FromLong PyLong_FromLong

0 commit comments

Comments
 (0)