Skip to content

Commit

Permalink
Update setup to use eigenpip for installation
Browse files Browse the repository at this point in the history
  • Loading branch information
mohanwu committed Feb 4, 2021
1 parent a5748da commit b8680da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build-system]
requires = ["setuptools>=38", "wheel", "numpy>=1.16.4", "cython>=0.29.12","scipy>=1.2.1", "git+git://github.com/mohanwu/eigenpip.git"]
requires = ["setuptools>=38", "wheel", "numpy>=1.16.4", "cython>=0.29.12","scipy>=1.2.1", "eigenpip @ https://github.com/mohanwu/eigenpip/archive/main.zip"]
build-backend = "setuptools.build_meta"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
cmdclass.update({"build_ext": build_ext})

# readthedocs install
on_rtd = os.environ.get('READTHEDOCS') == 'True
on_rtd = os.environ.get('READTHEDOCS') == 'True'

# path to eigen library
EIGEN_PATH = eigenpip.get_include()
Expand Down Expand Up @@ -104,7 +104,7 @@ def package_files(directory):
install_requires=[
'numpy>=1.16.4', 'scipy>=1.2.1',
'numba>=0.51.2', 'Cython>=0.29.12',
'git+git://github.com/mohanwu/eigenpip.git'
'eigenpip @ https://github.com/mohanwu/eigenpip/archive/main.zip'
],
extras_require={
'docs': ['sphinx', 'sphinx_rtd_theme', 'recommonmark'],
Expand Down

0 comments on commit b8680da

Please sign in to comment.