Skip to content
This repository has been archived by the owner on Oct 3, 2019. It is now read-only.

Commit

Permalink
Merge pull request #146 from jacebrowning/plumbing/pipenv-and-python3.6
Browse files Browse the repository at this point in the history
Use pipenv and add Python 3.6 support
  • Loading branch information
jacebrowning committed May 31, 2017
2 parents dd3b252 + b35ce59 commit ff062bb
Show file tree
Hide file tree
Showing 21 changed files with 728 additions and 164 deletions.
2 changes: 1 addition & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[run]
branch = true
omit =
*/env/*
*/.venv/*
*/tests/*
22 changes: 11 additions & 11 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
/docs/apidocs
/site
/docs/gen/
/docs/apidocs/
/site/
/*.html
/*.rst
/docs/*.png
Expand All @@ -30,19 +30,19 @@ Icon*
*.gdraw

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

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

# Sublime Text
*.sublime-workspace
Expand Down

0 comments on commit ff062bb

Please sign in to comment.