Skip to content

Commit

Permalink
forgot to update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zanellia committed Apr 3, 2020
1 parent 4f819b9 commit 483e2fe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ def configuration(parent_package='',top_path=None):
config.get_version('weave/version.py')
return config

from setuptools import setup, find_packages

def setup_package():

Expand All @@ -164,6 +165,11 @@ def setup_package():
url = "http://www.github.com/scipy/weave",
download_url = "https://pypi.python.org/pypi/weave",
license = 'BSD',
packages = find_packages(),
install_requires=[
'numpy',
'nose',
],
cmdclass=cmdclass,
classifiers=[_f for _f in CLASSIFIERS.split('\n') if _f],
platforms = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],
Expand Down
1 change: 0 additions & 1 deletion weave/platform_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ def get_compiler_dir(compiler_name):
chk_sum = check_sum(exe_path)
restore_sys_argv()

import pdb; pdb.set_trace()
if chk_sum is not None:
return 'compiler_'+chk_sum
else:
Expand Down

0 comments on commit 483e2fe

Please sign in to comment.