-
Notifications
You must be signed in to change notification settings - Fork 11
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 #6 from ryanhiebert/tox-fix
Decode the README as utf-8
- Loading branch information
Showing
3 changed files
with
18 additions
and
41 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,33 +1,11 @@ | ||
sudo: false | ||
language: python | ||
|
||
python: | ||
- "2.6" | ||
- "2.7" | ||
- "3.2" | ||
- "3.3" | ||
- "3.4" | ||
- "pypy" | ||
|
||
install: pip install tox | ||
env: | ||
- PIP_USE_MIRRORS=true DEPS="genshi" | ||
- PIP_USE_MIRRORS=true DEPS="kid genshi" | ||
|
||
matrix: | ||
exclude: | ||
- python: "2.6" | ||
env: PIP_USE_MIRRORS=true DEPS="genshi" | ||
- python: "2.7" | ||
env: PIP_USE_MIRRORS=true DEPS="genshi" | ||
- python: "pypy" | ||
env: PIP_USE_MIRRORS=true DEPS="genshi" | ||
- python: "3.2" | ||
env: PIP_USE_MIRRORS=true DEPS="kid genshi" | ||
- python: "3.3" | ||
env: PIP_USE_MIRRORS=true DEPS="kid genshi" | ||
- python: "3.4" | ||
env: PIP_USE_MIRRORS=true DEPS="kid genshi" | ||
|
||
install: | ||
- "pip install $DEPS" | ||
|
||
script: "python setup.py test" | ||
- TOXENV=py26 | ||
- TOXENV=py27 | ||
- TOXENV=py32 | ||
- TOXENV=py33 | ||
- TOXENV=py34 | ||
- TOXENV=pypy | ||
script: tox |
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 |
---|---|---|
|
@@ -49,7 +49,7 @@ def run_tests(self): | |
version='0.6.0', | ||
description= | ||
'A really simple WSGI way to serve static (or mixed) content.', | ||
long_description=open('README.rst').read(), | ||
long_description=open('README.rst', 'rb').read().decode('utf-8'), | ||
author='Roman Mohr', | ||
author_email='[email protected]', | ||
url='https://github.com/rmohr/static3', | ||
|
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