-
Notifications
You must be signed in to change notification settings - Fork 67
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 #154 from nir0s/add-license-file
Repo Organization
- Loading branch information
Showing
10 changed files
with
62 additions
and
52 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,18 +1,33 @@ | ||
sudo: false | ||
language: python | ||
python: 3.5 | ||
env: | ||
- TOXENV=flake8 | ||
- TOXENV=py26 | ||
- TOXENV=py27 | ||
- TOXENV=py34 | ||
- TOXENV=py35 | ||
- TOXENV=pypy | ||
- TOXENV=pypy3 | ||
|
||
matrix: | ||
include: | ||
- env: TOXENV=flake8 | ||
- env: TOXENV=py3flake8 | ||
- python: 2.6 # these are just to make travis's UI a bit prettier | ||
env: TOXENV=py26 | ||
- python: 2.7 | ||
env: TOXENV=py27 | ||
- python: 3.3 | ||
env: TOXENV=py33 | ||
- python: 3.4 | ||
env: TOXENV=py34 | ||
- python: 3.5 | ||
env: TOXENV=py35 | ||
- python: 3.6 | ||
env: TOXENV=py36 | ||
- python: pypy | ||
env: TOXENV=pypy | ||
# This should be tested. Problem is, Travis are using Python 3.2 for pypy3 which is no longer supported by pip | ||
# - python: pypy3 | ||
# env: TOXENV=pypy3 | ||
|
||
before_install: | ||
- pip install codecov | ||
install: | ||
- pip install tox | ||
- pip install codecov | ||
- pip install tox | ||
script: | ||
- tox | ||
- tox | ||
after_success: | ||
- codecov |
File renamed without changes.
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,10 @@ | ||
include *.md | ||
include *.py | ||
include *.txt | ||
include LICENSE | ||
include CHANGES | ||
include Makefile | ||
|
||
recursive-include tests *.py | ||
|
||
global-exclude *.py[co] |
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 was deleted.
Oops, something went wrong.
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,7 +3,7 @@ coverage: | |
status: | ||
patch: | ||
default: | ||
target: '100' | ||
target: '98' | ||
project: | ||
default: | ||
target: '100' | ||
target: '98' |
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,5 @@ | ||
[bdist_wheel] | ||
universal = 1 | ||
|
||
[metadata] | ||
license_file = LICENSE |
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