Removed scipy from requirements

This commit is contained in:
Samer Afach 2017-01-13 11:11:41 +01:00
parent e81b27ef4e
commit 36b080270f
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ execute_process(COMMAND ${VERSION_GETTER}
WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
file (STRINGS "${CMAKE_BINARY_DIR}/TEMP_VERSION.txt" VERSION)
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()
add_definitions(-DSPINTRUM_VERSION="${VERSION}")
message("${BoldBlue}Building Spintrum, version: ${VERSION}${ColourReset}")

View File

@ -260,7 +260,7 @@ setup(name='spintrum',
author_email='samer@afach.de',
license='MPL',
packages=['spintrum'],
install_requires=['numpy', 'scipy', 'mpmath'],
install_requires=['numpy', 'mpmath'],
python_requires = '>=3.3',
include_package_data=True, # enable including files with MANIFEST.in
package_data={'': [lib_file]},