Removed scipy from requirements
This commit is contained in:
parent
e81b27ef4e
commit
36b080270f
@ -56,7 +56,7 @@ execute_process(COMMAND ${VERSION_GETTER}
|
|||||||
WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
|
WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
|
||||||
file (STRINGS "${CMAKE_BINARY_DIR}/TEMP_VERSION.txt" VERSION)
|
file (STRINGS "${CMAKE_BINARY_DIR}/TEMP_VERSION.txt" VERSION)
|
||||||
if(NOT "${VERSION_GET_RESULT}" STREQUAL "0")
|
if(NOT "${VERSION_GET_RESULT}" STREQUAL "0")
|
||||||
message(FATAL_ERROR "${BoldRed}Error: Unable to get version number by executing ${VERSION_GETTER}${ColourReset}")
|
message(FATAL_ERROR "${BoldRed}Error: Unable to get version number by executing ${VERSION_GETTER}. Call output is: ${VERSION_GET_OUTPUT}; and call's error output is: ${VERSION_GET_ERROR}${ColourReset}")
|
||||||
endif()
|
endif()
|
||||||
add_definitions(-DSPINTRUM_VERSION="${VERSION}")
|
add_definitions(-DSPINTRUM_VERSION="${VERSION}")
|
||||||
message("${BoldBlue}Building Spintrum, version: ${VERSION}${ColourReset}")
|
message("${BoldBlue}Building Spintrum, version: ${VERSION}${ColourReset}")
|
||||||
|
2
setup.py
2
setup.py
@ -260,7 +260,7 @@ setup(name='spintrum',
|
|||||||
author_email='samer@afach.de',
|
author_email='samer@afach.de',
|
||||||
license='MPL',
|
license='MPL',
|
||||||
packages=['spintrum'],
|
packages=['spintrum'],
|
||||||
install_requires=['numpy', 'scipy', 'mpmath'],
|
install_requires=['numpy', 'mpmath'],
|
||||||
python_requires = '>=3.3',
|
python_requires = '>=3.3',
|
||||||
include_package_data=True, # enable including files with MANIFEST.in
|
include_package_data=True, # enable including files with MANIFEST.in
|
||||||
package_data={'': [lib_file]},
|
package_data={'': [lib_file]},
|
||||||
|
Loading…
Reference in New Issue
Block a user