Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
svenkreiss committed Dec 7, 2016
1 parent e962aa1 commit fe74a0a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ script:
- pip install --upgrade pip
- pip install numpy nose flake8 hacking
- "pip install ."
- python2.7 -c "from future.builtins import int"
- python2.7 -c "import s2sphere"
- flake8
- python2.7 tests/compare_implementations_test.py -vv
Expand Down
5 changes: 3 additions & 2 deletions s2sphere/sphere.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from __future__ import print_function, unicode_literals, division
from future.types import int
from future.types import range

from future.builtins import int
from future.builtins import range

import bisect
import decimal
Expand Down

0 comments on commit fe74a0a

Please sign in to comment.