3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-24 03:29:28 +01:00

Merge branch 'master+travis-production'

This commit is contained in:
James Lu 2017-06-06 17:13:41 -07:00
commit 6e3e188fd6
2 changed files with 4 additions and 3 deletions

View File

@ -1,3 +1,6 @@
dist: trusty
sudo: false
language: python
python:
- '3.4'
@ -27,7 +30,5 @@ deploy:
condition: $(python3 -c 'import re,os; print(bool(re.match(r"^(\d+\.){2,}\d+$", os.environ.get("TRAVIS_TAG", ""))))') == "True"
python: '3.6'
skip_upload_docs: true
notifications:
email: false

View File

@ -32,7 +32,7 @@ with open('__init__.py', 'w') as f:
# Convert Markdown to RST for PyPI
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
long_description = pypandoc.convert('README.md', 'rst', format='markdown_github')
except ImportError:
print('WARNING: PyPandoc not available; skipping writing long description.')
long_description = None