-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Per 'http://python-future.org/automatic_conversion.html' py2 & py3 compatibility. * Make sure test fails if there is more than one list entry. * Fix deprecated warning for invalid escapes. * Support utf-8 in template files * Add utf-8 characters to a test example * Unicode example in template input. * Switch to utf-8 strings and remove unnecessary conversions. * Remove legacy lint checks * Migrate StringIO and remove unneeded import six. * Remove unnecessary explicit unicast declaration. * oll back changes to 'open'. * Cosmetic linting. * Package 'future' needed for importing builtins. [aliases] test=pytest * Add tests and testdata to distribution. * Use correct install_requires stanza for dependencies. * Include testdata files in binarty dist for tyesting.
- Loading branch information
Showing
14 changed files
with
234 additions
and
141 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,3 +1,6 @@ | ||
include README.md | ||
include COPYING | ||
include *.md | ||
include *.txt | ||
recursive-include tests *.py | ||
recursive-include examples * | ||
recursive-include testdata * |
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 |
---|---|---|
|
@@ -3,3 +3,6 @@ description-file = README.md | |
|
||
[aliases] | ||
test=pytest | ||
|
||
[bdist_wheel] | ||
universal=1 |
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
Oops, something went wrong.