-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit does quite a bit: - No more legacy Python (aka Python 2) support! - Also no more support for Python 3.2, 3.3, 3.4, 3.5 and PyPy2.7 - Type hints! - Major version bump - Documentation updates (README, CHANGELOG)
- Loading branch information
Showing
5 changed files
with
63 additions
and
54 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,7 @@ | ||
language: python | ||
python: | ||
- "2.7" | ||
- "3.2" | ||
- "3.3" | ||
- "3.4" | ||
- "3.5" | ||
- "3.5-dev" | ||
- "3.6" | ||
- "3.6-dev" | ||
- "3.7-dev" | ||
- "nightly" | ||
- "pypy" | ||
- "pypy3" | ||
script: python tests.py |
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
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 |
---|---|---|
|
@@ -2,12 +2,12 @@ | |
|
||
setup(name = 'parsenvy', | ||
packages = ['parsenvy'], | ||
version = '1.0.2', | ||
version = '2.0.0', | ||
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/1.0.2', | ||
download_url = 'https://github.com/nkantar/Parsenvy/tarball/2.0.0', | ||
keywords = ['environment variables'], | ||
classifiers = [], | ||
license = 'BSD-3-Clause', | ||
|