-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Switch to scikit-build #219
Open
ghost
wants to merge
6
commits into
symengine:master
Choose a base branch
from
unknown repository
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
e124c40
setup: switch to scikit-build
xoviat 59e7249
gitignore: add _skbuild
xoviat 42e936b
appveyor: remove mingw configuration from tests
xoviat ae598cb
Travis: remove 3.3 tests, as it's EOL
xoviat 641c8d0
Install build requirements and use pip
xoviat eb1eb44
CMake: Install to correct directory
xoviat File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,3 +35,5 @@ symengine.egg-info/ | |
# Temp files | ||
*~ | ||
.eggs/ | ||
|
||
_skbuild |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,217 +1,28 @@ | ||
from __future__ import print_function | ||
from os import getenv, path, makedirs | ||
|
||
import os | ||
import subprocess | ||
import shlex | ||
import sys | ||
from distutils.command.build_ext import build_ext as _build_ext | ||
from distutils.command.build import build as _build | ||
|
||
# Make sure the system has the right Python version. | ||
if sys.version_info[:2] < (2, 7): | ||
print("SymEngine requires Python 2.7 or newer. " | ||
"Python %d.%d detected" % sys.version_info[:2]) | ||
sys.exit(-1) | ||
|
||
# use setuptools by default as per the official advice at: | ||
# packaging.python.org/en/latest/current.html#packaging-tool-recommendations | ||
use_setuptools = True | ||
# set the environment variable USE_DISTUTILS=True to force the use of distutils | ||
use_distutils = getenv('USE_DISTUTILS') | ||
if use_distutils is not None: | ||
if use_distutils.lower() == 'true': | ||
use_setuptools = False | ||
else: | ||
print("Value {} for USE_DISTUTILS treated as False". | ||
format(use_distutils)) | ||
|
||
if use_setuptools: | ||
try: | ||
from setuptools import setup | ||
from setuptools.command.install import install as _install | ||
except ImportError: | ||
use_setuptools = False | ||
|
||
if not use_setuptools: | ||
from distutils.core import setup | ||
from distutils.command.install import install as _install | ||
|
||
cmake_opts = [("PYTHON_BIN", sys.executable), | ||
("CMAKE_INSTALL_RPATH_USE_LINK_PATH", "yes")] | ||
cmake_generator = [None] | ||
cmake_build_type = ["Release"] | ||
|
||
|
||
def process_opts(opts): | ||
return ['-D'+'='.join(o) for o in opts] | ||
|
||
|
||
def get_build_dir(dist): | ||
source_dir = path.dirname(path.realpath(__file__)) | ||
build = dist.get_command_obj('build') | ||
build_ext = dist.get_command_obj('build_ext') | ||
return source_dir if build_ext.inplace else build.build_platlib | ||
|
||
|
||
global_user_options = [ | ||
('symengine-dir=', None, | ||
'path to symengine installation or build directory'), | ||
('generator=', None, 'cmake build generator'), | ||
('build-type=', None, 'build type: Release or Debug'), | ||
('define=', 'D', | ||
'options to cmake <var>:<type>=<value>'), | ||
] | ||
|
||
def _process_define(arg): | ||
(defs, one), = getattr(arg, 'define', None) or [('', '1')] | ||
assert one == '1' | ||
defs = [df for df in defs.split(';') if df != ''] | ||
return [(s.strip(), None) if '=' not in s else | ||
tuple(ss.strip() for ss in s.split('=')) | ||
for s in defs] | ||
|
||
|
||
class BuildWithCmake(_build): | ||
sub_commands = [('build_ext', None)] | ||
|
||
|
||
class BuildExtWithCmake(_build_ext): | ||
_build_opts = _build_ext.user_options | ||
user_options = list(global_user_options) | ||
user_options.extend(_build_opts) | ||
|
||
def initialize_options(self): | ||
_build_ext.initialize_options(self) | ||
self.define = None | ||
self.symengine_dir = None | ||
self.generator = None | ||
self.build_type = "Release" | ||
|
||
def finalize_options(self): | ||
_build_ext.finalize_options(self) | ||
# The argument parsing will result in self.define being a string, but | ||
# it has to be a list of 2-tuples. | ||
# Multiple symbols can be separated with semi-colons. | ||
self.define = _process_define(self) | ||
cmake_opts.extend(self.define) | ||
if self.symengine_dir: | ||
cmake_opts.extend([('SymEngine_DIR', self.symengine_dir)]) | ||
|
||
if self.generator: | ||
cmake_generator[0] = self.generator | ||
|
||
cmake_build_type[0] = self.build_type | ||
|
||
def cmake_build(self): | ||
source_dir = path.dirname(path.realpath(__file__)) | ||
build_dir = get_build_dir(self.distribution) | ||
if not path.exists(build_dir): | ||
makedirs(build_dir) | ||
if build_dir != source_dir and path.exists("CMakeCache.txt"): | ||
os.remove("CMakeCache.txt") | ||
|
||
cmake_cmd = ["cmake", source_dir, | ||
"-DCMAKE_BUILD_TYPE=" + cmake_build_type[0]] | ||
cmake_cmd.extend(process_opts(cmake_opts)) | ||
if not path.exists(path.join(build_dir, "CMakeCache.txt")): | ||
cmake_cmd.extend(self.get_generator()) | ||
if subprocess.call(cmake_cmd, cwd=build_dir) != 0: | ||
raise EnvironmentError("error calling cmake") | ||
|
||
if subprocess.call(["cmake", "--build", ".", | ||
"--config", cmake_build_type[0]], | ||
cwd=build_dir) != 0: | ||
raise EnvironmentError("error building project") | ||
|
||
def get_generator(self): | ||
if cmake_generator[0]: | ||
return ["-G", cmake_generator[0]] | ||
else: | ||
import platform | ||
import sys | ||
if (platform.system() == "Windows"): | ||
compiler = str(self.compiler).lower() | ||
if ("msys" in compiler): | ||
return ["-G", "MSYS Makefiles"] | ||
elif ("mingw" in compiler): | ||
return ["-G", "MinGW Makefiles"] | ||
elif sys.maxsize > 2**32: | ||
return ["-G", "Visual Studio 14 2015 Win64"] | ||
else: | ||
return ["-G", "Visual Studio 14 2015"] | ||
return [] | ||
|
||
def run(self): | ||
self.cmake_build() | ||
# can't use super() here because | ||
# _build_ext is an old style class in 2.7 | ||
_build_ext.run(self) | ||
|
||
|
||
class InstallWithCmake(_install): | ||
_install_opts = _install.user_options | ||
user_options = list(global_user_options) | ||
user_options.extend(_install_opts) | ||
|
||
def initialize_options(self): | ||
_install.initialize_options(self) | ||
self.define = None | ||
self.symengine_dir = None | ||
self.generator = None | ||
self.build_type = "Release" | ||
|
||
def finalize_options(self): | ||
_install.finalize_options(self) | ||
# The argument parsing will result in self.define being a string, but | ||
# it has to be a list of 2-tuples. | ||
# Multiple symbols can be separated with semi-colons. | ||
self.define = _process_define(self) | ||
cmake_opts.extend(self.define) | ||
cmake_build_type[0] = self.build_type | ||
cmake_opts.extend([('PYTHON_INSTALL_PATH', path.join(os.getcwd(), self.install_platlib))]) | ||
#cmake_opts.extend([('PYTHON_INSTALL_HEADER_PATH', | ||
# path.join(os.getcwd(), self.install_headers))]) | ||
|
||
def cmake_install(self): | ||
source_dir = path.dirname(path.realpath(__file__)) | ||
build_dir = get_build_dir(self.distribution) | ||
cmake_cmd = ["cmake", source_dir] | ||
cmake_cmd.extend(process_opts(cmake_opts)) | ||
|
||
# CMake has to be called here to update PYTHON_INSTALL_PATH | ||
# if build and install were called separately by the user | ||
if subprocess.call(cmake_cmd, cwd=build_dir) != 0: | ||
raise EnvironmentError("error calling cmake") | ||
|
||
if subprocess.call(["cmake", "--build", ".", | ||
"--config", cmake_build_type[0], | ||
"--target", "install"], | ||
cwd=build_dir) != 0: | ||
raise EnvironmentError("error installing") | ||
|
||
import compileall | ||
compileall.compile_dir(path.join(self.install_platlib, "symengine")) | ||
|
||
def run(self): | ||
# can't use super() here because _install is an old style class in 2.7 | ||
_install.run(self) | ||
self.cmake_install() | ||
|
||
cmdclass={ | ||
'build': BuildWithCmake, | ||
'build_ext': BuildExtWithCmake, | ||
'install': InstallWithCmake, | ||
} | ||
|
||
try: | ||
from wheel.bdist_wheel import bdist_wheel | ||
class BdistWheelWithCmake(bdist_wheel): | ||
def finalize_options(self): | ||
bdist_wheel.finalize_options(self) | ||
self.root_is_pure = False | ||
cmdclass["bdist_wheel"] = BdistWheelWithCmake | ||
from skbuild import setup | ||
except ImportError: | ||
pass | ||
|
||
print('scikit-build is required to build from source.', file=sys.stderr) | ||
print('Please run:', file=sys.stderr) | ||
print('', file=sys.stderr) | ||
print(' python -m pip install scikit-build') | ||
sys.exit(1) | ||
|
||
from setuptools import find_packages | ||
|
||
# BEGIN | ||
# TODO: remove hack when py27 is dropped | ||
from skbuild.platform_specifics import windows | ||
|
||
if sys.version_info < (3, 0): | ||
windows._get_msvc_compiler_env = lambda _ : {} | ||
# END | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe this can be incorporated into |
||
|
||
long_description = ''' | ||
SymEngine is a standalone fast C++ symbolic manipulation library. | ||
Optional thin Python wrappers (SymEngine) allow easy usage from Python and | ||
|
@@ -225,13 +36,12 @@ def finalize_options(self): | |
setup(name="symengine", | ||
version="0.3.0", | ||
description="Python library providing wrappers to SymEngine", | ||
setup_requires=['cython>=0.19.1'], | ||
long_description=long_description, | ||
packages=find_packages(), | ||
author="SymEngine development team", | ||
author_email="[email protected]", | ||
license="MIT", | ||
url="https://github.com/symengine/symengine.py", | ||
cmdclass = cmdclass, | ||
classifiers=[ | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
add_subdirectory(lib) | ||
add_subdirectory(tests) | ||
|
||
set(PY_PATH ${PYTHON_INSTALL_PATH}/symengine) | ||
set(PY_PATH symengine) | ||
install(FILES __init__.py utilities.py compatibility.py sympy_compat.py functions.py printing.py | ||
DESTINATION ${PY_PATH} | ||
) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't the command just be
pip install scikit-build
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Both ways work but the advantage of
python -m pip ...
is that it's easier to tell which version of Python the package is being installed in (this SO thread discusses it some more). The Python 3 documentation recommends this way of invokingpip
(also see this Python issue that implemented the change in the docs).