diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-12-05 19:16:00 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-12-05 19:16:00 -0700 |
commit | 4743f3b4454a736e2bbd8b6f116f7efaef13c406 (patch) | |
tree | 5be17121c484f7f3707055bdd7ae087ba07f1d95 /pavement.py | |
parent | 0ba39a97ce6f38b714b8109bd32573a9eacd4c17 (diff) | |
download | numpy-4743f3b4454a736e2bbd8b6f116f7efaef13c406.tar.gz |
MAINT: Include from __future__ boilerplate in some files missing it.
Some newer *.py files are missing the `from __future__` boilerplate
that helps assure Python2 and Python3 compatibility.
Diffstat (limited to 'pavement.py')
-rw-r--r-- | pavement.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pavement.py b/pavement.py index f4b1b2b16..ef6c6af52 100644 --- a/pavement.py +++ b/pavement.py @@ -54,7 +54,7 @@ TODO - fix bdist_mpkg: we build the same source twice -> how to make sure we use the same underlying python for egg install in venv and for bdist_mpkg """ -from __future__ import division, absolute_import, print_function +from __future__ import division, print_function # What need to be installed to build everything on mac os x: # - wine: python 2.6 and 2.5 + makensis + cpuid plugin + mingw, all in the PATH |