carlthome / python-audio-effects

Apply audio effects such as reverb and EQ directly to audio files or NumPy ndarrays.
MIT License
381 stars 52 forks source link

Fix README.rst's broken formatting when deploying to PyPI #7

Closed carlthome closed 5 years ago

carlthome commented 7 years ago

https://www.reddit.com/r/learnpython/comments/586k8f/pypi_deployment_with_travis_garbles_pandoc/

algrebe commented 7 years ago

@carlthome I've faced the same issue.

The problem went away when I installed the latest pandoc version.

before_deploy:
    "wget https://github.com/jgm/pandoc/releases/download/1.19.1/pandoc-1.19.1-1-amd64.deb -O $TRAVIS_BUILD_DIR/pandoc.deb",
    "sudo dpkg -i $TRAVIS_BUILD_DIR/pandoc.deb",
    "rm $TRAVIS_BUILD_DIR/pandoc.deb",
    "pandoc --version",
    "pandoc --from=markdown --to=rst --output=README.rst README.md",
carlthome commented 5 years ago

PyPI supports markdown now.