From 501c35c8bccc7e5c2285ba7e9daf617a87fc3ae5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mi=C5=A1o=20Belica?= Date: Sat, 31 Mar 2018 13:10:20 +0200 Subject: [PATCH] Pass tests for Python 3.7 - Don't include compiled files into package. - Install the newest setuptools to properly install package. --- .travis.yml | 1 + MANIFEST.in | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 10ae4c6..c4f172b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,6 +16,7 @@ python: before_install: sudo apt-get install libxml2-dev libxslt-dev # command to install dependencies install: + - pip install -U pip wheel setuptools - python setup.py install - make deps # command to run tests diff --git a/MANIFEST.in b/MANIFEST.in index 55fa275..5caeb8a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,3 +2,5 @@ include README.rst include CHANGELOG.rst include LICENSE.rst include AUTHORS.txt +recursive-exclude * __pycache__ +recursive-exclude * *.py[co]