-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add support for Python 3.7 * Fix PyPI description rendering * Upgrade travis environment to Ubuntu 16.04 Xenial * Update ruamel.yaml to 0.15.x * Match setup.py version reqs to requirements.txt * Disable Pylint on Py37 Pylint 2.0+ is needed for Py37, which in turn doesn't support Py27. * Fix bash IF statement * More pylint travis modifications
- Loading branch information
1 parent
7195a67
commit cd571bc
Showing
5 changed files
with
17 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ enum34 | |
python-vxi11>=0.8 | ||
pyusb | ||
python-usbtmc | ||
ruamel.yaml~=0.14.12 | ||
ruamel.yaml~=0.15.37 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[tox] | ||
envlist = py27,py34,py35,py36 | ||
envlist = py27,py34,py35,py36,py37 | ||
[testenv] | ||
deps = -rdev-requirements.txt | ||
commands = pytest |