-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #139 from jacebrowning/release/v1.1
Release v1.1
- Loading branch information
Showing
39 changed files
with
773 additions
and
319 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
cache: | ||
- env | ||
|
||
install: | ||
# Export build paths | ||
- copy C:\MinGW\bin\mingw32-make.exe C:\MinGW\bin\make.exe | ||
- set PATH=%PATH%;C:\MinGW\bin | ||
- make --version | ||
# Check system dependencies | ||
- make doctor | ||
# Install project dependencies | ||
- make install | ||
|
||
build: off | ||
|
||
test_script: | ||
- make test | ||
- make check | ||
- make demo |
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,6 +1,8 @@ | ||
[pep8] | ||
|
||
# E401 multiple imports on one line (checked by PyLint) | ||
# E402 module level import not at top of file (checked by PyLint) | ||
# E501: line too long (checked by PyLint) | ||
# E711: comparison to None (used to improve test style) | ||
# E712: comparison to True (used to improve test style) | ||
ignore = E501,E711,E712 | ||
ignore = E401,E402,E501,E711,E712 |
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
[Make] | ||
|
||
cli = make | ||
|
||
version = GNU Make | ||
|
||
|
||
[Python] | ||
|
||
cli = python | ||
|
||
version = Python 3.5. | ||
|
||
|
||
[Git] | ||
|
||
cli = git | ||
|
||
version = 2. | ||
|
||
|
||
[virtualenv] | ||
|
||
cli = virtualenv | ||
|
||
version = 15. | ||
|
||
|
||
[pandoc] | ||
|
||
cli = pandoc | ||
|
||
version = 1. | ||
|
||
|
||
[Graphviz] | ||
|
||
cli = dot | ||
cli_version_arg = -V | ||
|
||
version = 2. |
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.