8000 BLD: fix gfortran version check, and make distutils.test() work by rgommers · Pull Request #5644 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

BLD: fix gfortran version check, and make distutils.test() work #5644

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 8, 2015
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
BUG: fix import in distutils/__init__.py under Python 2.x
Without this fix, _INSTALLED is False and distutils.test() is not available.
  • Loading branch information
Ralf Gommers committed Mar 7, 2015
commit 82a8c8304010948e28d3da2c91582bc88de17cb9
2 changes: 1 addition & 1 deletion numpy/distutils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from .npy_pkg_config import *

try:
import __config__
from . import __config__
_INSTALLED = True
except ImportError:
_INSTALLED = False
Expand Down
0