Fix MANIFEST.in

An update of check-manifest shone some light on some issues with MANIFEST.in, specifically that we didn't ignore/prune the contrib directory, and that we were using prune instead of exclude for files. This fixes both issues.

Fixes #7403
code_spécifique_watcha
Brendan Abolivier 5 years ago
parent 3085cde577
commit 068da604c2
No known key found for this signature in database
GPG Key ID: 1E015C145F1916CD
  1. 7
      MANIFEST.in
  2. 1
      changelog.d/7404.misc

@ -35,18 +35,19 @@ exclude .dockerignore
exclude test_postgresql.sh
exclude .editorconfig
exclude sytest-blacklist
exclude mypy.ini
exclude .codecov.yml
exclude .coveragerc
include pyproject.toml
recursive-include changelog.d *
prune .buildkite
prune .circleci
prune .codecov.yml
prune .coveragerc
prune .github
prune debian
prune demo/etc
prune docker
prune mypy.ini
prune snap
prune stubs
prune contrib

@ -0,0 +1 @@
Fix issues with the Python package manifest.
Loading…
Cancel
Save