Skip to content

Commit

Permalink
Merge c918636 into 3e1cdeb
Browse files Browse the repository at this point in the history
  • Loading branch information
esc committed Oct 30, 2018
2 parents 3e1cdeb + c918636 commit 2eded83
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ python:
- 3.4
- 3.5
- 3.6
# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs
matrix:
include:
- python: 3.7
dist: xenial
sudo: true
install:
- pip install -r requirements.txt
- pip install -r test_requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion test_cmdline/mktestarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def exists(filename):
return path.isfile(filename)

if not exists(DATA_FILE) and not exists(META_FILE):
a = numpy.linspace(0, 100, 2e7)
a = numpy.linspace(0, 100, int(2e7))
with open(DATA_FILE, 'wb') as f:
f.write(a.tostring())
with open(META_FILE, 'w') as m:
Expand Down

0 comments on commit 2eded83

Please sign in to comment.