Skip to content

Commit

Permalink
import ext_tools correctly, remove check for Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
zanellia committed Apr 2, 2020
1 parent 1dfbc59 commit 88665ef
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/fibonacci.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

import sys
sys.path.insert(0,'..')
import ext_tools
import weave.ext_tools as ext_tools


def build_fibonacci():
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
import os


if not sys.version_info[:2] in [(2, 6), (2, 7)]:
raise RuntimeError("Python version 2.6 or 2.7 required.")
# if not sys.version_info[:2] in [(2, 6), (2, 7)]:
# raise RuntimeError("Python version 2.6 or 2.7 required.")


CLASSIFIERS = """\
Expand Down
4 changes: 2 additions & 2 deletions weave/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
import sys


if not sys.version_info[:2] in [(2, 6), (2, 7)]:
raise RuntimeError("Weave only supports Python 2.6 and 2.7")
# if not sys.version_info[:2] in [(2, 6), (2, 7)]:
# raise RuntimeError("Weave only supports Python 2.6 and 2.7")


from weave.version import version as __version__
Expand Down

0 comments on commit 88665ef

Please sign in to comment.