Skip to content

Commit

Permalink
Merge pull request #278 from jacebrowning/release/v1.3
Browse files Browse the repository at this point in the history
Release v1.3
  • Loading branch information
jacebrowning committed Jul 30, 2017
2 parents b1e9be0 + 0eb3025 commit 0d804e9
Show file tree
Hide file tree
Showing 142 changed files with 2,929 additions and 981 deletions.
4 changes: 2 additions & 2 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[run]
branch = true
omit =
*/env/*
*/test/*
*/.venv/*
*/tests/*
26 changes: 14 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ __pycache__
Icon*

# Temporary virtual environment files
.cache
/env
/.cache/
/.venv/

# Temporary server files
.env
*.pid

# Generated documentation
/docs/gen
/apidocs
/site
/docs/gen/
/docs/apidocs/
/site/
/*.html
/*.rst
/docs/*.png
Expand All @@ -30,17 +30,19 @@ Icon*
*.gdraw

# Testing and coverage results
.cache
.pytest
.coverage
.coverage.*
/htmlcov
/.pytest/
/.coverage
/.coverage.*
/htmlcov/
/xmlreport/
/pyunit.xml
/tmp/
*.tmp

# Build and release directories
/build
/dist
/build/
/dist/
*.spec

# Sublime Text
*.sublime-workspace
Expand Down
5 changes: 0 additions & 5 deletions .pep257

This file was deleted.

8 changes: 8 additions & 0 deletions .pycodestyle.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[pycodestyle]

# 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 = E401,E402,E501,E711,E712
13 changes: 13 additions & 0 deletions .pydocstyle
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[pydocstyle]

# 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 = D100,D101,D102,D103,D104,D105,D202
Loading

0 comments on commit 0d804e9

Please sign in to comment.