From 141a463fedac474296601d9a08fc35e2fc5b165c Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Sun, 22 Nov 2015 00:10:19 +0100 Subject: [PATCH 1/2] fix #1185 - ensure MANIFEST.in exactly matches what should go to a sdist --- CHANGELOG | 1 + MANIFEST.in | 35 +++++++++++++++++++++++++++++++---- 2 files changed, 32 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 9e8d104b9..ebd726130 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -17,6 +17,7 @@ - fix the summary printed when no tests did run. Thanks Florian Bruhin for the PR. +- fix #1185 - ensure MANIFEST.in exactly matches what should go to a sdist 2.8.3 ----- diff --git a/MANIFEST.in b/MANIFEST.in index 87450409f..4a18c536a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,7 +1,34 @@ include CHANGELOG -include README.rst -include setup.py -include tox.ini include LICENSE -graft doc +include AUTHORS + +include README.rst +include CONTRIBUTING.rst + +include tox.ini +include setup.py + +include .coveragerc + +recursive-include bench *.py +recursive-include extra *.py + + graft testing +graft doc + +exclude _pytest/impl + +graft _pytest/vendored_packages + +recursive-exclude * *.pyc *.pyo + +exclude appveyor/install.ps1 +exclude appveyor.yml +exclude appveyor + +exclude ISSUES.txt +exclude HOWTORELEASE.rst +exclude plugin-test.sh +exclude requirements-docs.txt +exclude runtox.py From 13ae2fe28b9f52ef921cc73e07fc19429d929149 Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Tue, 24 Nov 2015 20:49:19 +0100 Subject: [PATCH 2/2] adopt review comment of #1186 --- MANIFEST.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 4a18c536a..9fc16c553 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -10,10 +10,13 @@ include setup.py include .coveragerc +include plugin-test.sh +include requirements-docs.txt +include runtox.py + recursive-include bench *.py recursive-include extra *.py - graft testing graft doc @@ -29,6 +32,3 @@ exclude appveyor exclude ISSUES.txt exclude HOWTORELEASE.rst -exclude plugin-test.sh -exclude requirements-docs.txt -exclude runtox.py