Skip to content

Commit

Permalink
Add MyPy run to Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
nkantar committed Feb 12, 2018
1 parent 1b20b7b commit a0b5af4
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ python:
- "3.6-dev"
- "3.7-dev"
- "nightly"
script: python tests.py
script:
- python tests.py
- mypy parsenvy/parsenvy.py
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Parsenvy Changelog


## [2.0.1] - 2018-02-11

### Added
- MyPy to Travis CI


## [2.0.0] - 2018-02-11

### Added
Expand Down Expand Up @@ -61,7 +67,8 @@
- Basic functionality


[Unreleased]: https://github.com/nkantar/Parsenvy/compare/2.0.0...HEAD
[Unreleased]: https://github.com/nkantar/Parsenvy/compare/2.0.1...HEAD
[2.0.1]: https://github.com/nkantar/Parsenvy/compare/2.0.0...2.0.1
[2.0.0]: https://github.com/nkantar/Parsenvy/compare/1.0.2...2.0.0
[1.0.2]: https://github.com/nkantar/Parsenvy/compare/1.0.1...1.0.2
[1.0.1]: https://github.com/nkantar/Parsenvy/compare/1.0.0...1.0.1
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
mypy
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

setup(name = 'parsenvy',
packages = ['parsenvy'],
version = '2.0.0',
version = '2.0.1',
description = 'Enviously elegant environment variable parsing',
author = 'Nik Kantar',
author_email = '[email protected]',
url = 'https://github.com/nkantar/Parsenvy',
download_url = 'https://github.com/nkantar/Parsenvy/tarball/2.0.0',
download_url = 'https://github.com/nkantar/Parsenvy/tarball/2.0.1',
keywords = ['environment variables'],
classifiers = [],
license = 'BSD-3-Clause',
Expand Down

0 comments on commit a0b5af4

Please sign in to comment.