Skip to content

Commit

Permalink
Merge pull request #12 from jacebrowning/release/v0.3
Browse files Browse the repository at this point in the history
Release v0.3
  • Loading branch information
jacebrowning committed Jul 31, 2016
2 parents 7673498 + 568adaf commit d959da8
Show file tree
Hide file tree
Showing 27 changed files with 270 additions and 315 deletions.
30 changes: 30 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
environment:
global:
RANDOM_SEED: 12345
matrix:
- PYTHON_MAJOR: 2
PYTHON_MINOR: 7
- PYTHON_MAJOR: 3
PYTHON_MINOR: 3
- PYTHON_MAJOR: 3
PYTHON_MINOR: 4
- PYTHON_MAJOR: 3
PYTHON_MINOR: 5

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
# Install project dependencies
- touch setup.py && make env
- make depends

build: off

test_script:
- make check
- make test
2 changes: 1 addition & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
branch = true
omit =
*/env/*
*/test/*
*/tests/*
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
* text=auto
CHANGES.md merge=union
CHANGELOG.md merge=union
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Icon*

# Generated documentation
/docs/gen
/apidocs
/docs/apidocs
/site
/*.html
/*.rst
Expand Down
6 changes: 5 additions & 1 deletion .pep257
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
# D211: No blank lines allowed before class docstring
add_select = D211

# D100: Missing docstring in public module
# D101: Missing docstring in public class
# D102: Missing docstring in public method
# D103: Missing docstring in public function
# D104: Missing docstring in public package
# D105: Missing docstring in magic method
# D202: No blank lines allowed after function docstring
add_ignore = D102,D105,D202
add_ignore = D100,D101,D102,D103,D104,D105,D202
4 changes: 3 additions & 1 deletion .pep8rc
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
[pep8]

# E501: line too long (checked by PyLint)
ignore = E501
# E711: comparison to None (used to improve test style)
# E712: comparison to True (used to improve test style)
ignore = E501,E711,E712
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[MESSAGES CONTROL]

disable=locally-disabled,fixme,too-few-public-methods,too-many-public-methods,invalid-name,global-statement,too-many-ancestors,no-init,missing-docstring
disable=locally-disabled,fixme,too-few-public-methods,too-many-public-methods,invalid-name,global-statement,too-many-ancestors,missing-docstring,no-init

[FORMAT]

Expand Down
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ install:

before_script:
- make env
- make depends-ci
- make depends

script:
- make ci
- make check
- make test

after_success:
- coveralls
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md → CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Revision History

## 0.3 (2016/07/30)

- Added Windows support.

## 0.2 (2016/04/16)

- Added the option to return non-zero exit codes.
Expand Down
Loading

0 comments on commit d959da8

Please sign in to comment.