Skip to content

Commit

Permalink
Merge pull request #34 from skirpichev/py3.7
Browse files Browse the repository at this point in the history
Enable py3.7 in Travis build matrix and fix broken import
  • Loading branch information
wheerd committed Jul 29, 2018
2 parents 419c103 + e17ba42 commit ff8b28a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
language: python
python:
- 3.6
- 3.7-dev
install:
- pip install -r requirements.txt
- pip install coveralls
- python setup.py -V
script:
- make coverage
after_success:
coveralls
coveralls
2 changes: 1 addition & 1 deletion matchpy/expressions/expressions.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
import keyword
from enum import Enum, EnumMeta
# pylint: disable=unused-import
from typing import (Callable, Iterator, List, NamedTuple, Optional, Set, Tuple, TupleMeta, Type, Union)
from typing import Callable, Iterator, List, NamedTuple, Optional, Set, Tuple, Type, Union
# pylint: enable=unused-import

from multiset import Multiset
Expand Down

0 comments on commit ff8b28a

Please sign in to comment.