Skip to content
This repository has been archived by the owner on Jun 10, 2020. It is now read-only.

Bumpy mypy versions #28

Merged
merged 6 commits into from
Nov 21, 2018
Merged
Show file tree
Hide file tree
Changes from 5 commits
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.mypy_cache
.pytest_cache
__pycache__
numpy_stubs.egg-info/
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
language: python
python: 3.6
python:
- 3.6
- 3.7
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like you may need to copy a few lines from NumPy's .travis.yml to check Python 3.7 working:
https://github.com/numpy/numpy/blob/4f1541e1cb68beb3049a21cbdec6e3d30c2afbbb/.travis.yml#L39-L41


notifications:
email: false
Expand All @@ -10,6 +12,7 @@ install:

script:
- flake8
- black --check numpy-stubs
- py.test

cache:
Expand Down
Loading