diff --git a/.github/workflows/mintest.yaml b/.github/workflows/mintest.yaml index 6d88b601a..179d84785 100644 --- a/.github/workflows/mintest.yaml +++ b/.github/workflows/mintest.yaml @@ -41,5 +41,6 @@ jobs: run: | tools/sed_coverage_rc.py - - name: Run tox - run: tox + - name: Run tox inside sdist + run: | + tools/tox_sdist.py diff --git a/MANIFEST.in b/MANIFEST.in index 54339263c..f39619936 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,11 +1,16 @@ +recursive-include docs *.rst *.html *.ico *.png *.py *.svg +recursive-include examples *.py recursive-include falcon *.pyx -recursive-include tests *.py -recursive-include docs *.rst +recursive-include tests *.py *.pyx include .coveragerc include tox.ini +include CONTRIBUTING.md include README.rst +include AUTHORS include LICENSE include docs/conf.py docs/Makefile graft docs/_static graft docs/_templates +graft requirements graft tools +prune docs/_build diff --git a/README.rst b/README.rst index 1759bd709..f11114705 100644 --- a/README.rst +++ b/README.rst @@ -1027,7 +1027,7 @@ See also: `CONTRIBUTING.md