Skip to content

Commit

Permalink
Remove numpy import from setup.py to avoid import error when not yet …
Browse files Browse the repository at this point in the history
…installed
  • Loading branch information
LukasDrude committed Jan 16, 2019
1 parent 128d687 commit e78890e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import setuptools as st
from codecs import open
from os import path
import numpy


here = path.abspath(path.dirname(__file__))

Expand All @@ -22,7 +22,7 @@
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='0.0.3',
version='0.0.4',

description='Weighted Prediction Error for speech dereverberation',
long_description=long_description,
Expand Down Expand Up @@ -98,7 +98,6 @@
# http://docs.python.org/3.4/distutils/setupscript.html#installing-additional-files # noqa
# In this case, 'data_file' will be installed into '<sys.prefix>/my_data'
# data_files=[('my_data', ['data/data_file'])],
include_dirs=[numpy.get_include()],
# To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow
# pip to create the appropriate form of executable for the target platform.
Expand Down

0 comments on commit e78890e

Please sign in to comment.