Skip to content

Commit

Permalink
Merge pull request #155 from miketheman/patch-1
Browse files Browse the repository at this point in the history
feat: exclude some more non-dist files
  • Loading branch information
mgedmin authored Apr 20, 2022
2 parents e03f410 + 4754902 commit 4b94262
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Changelog
-----------------

- Drop Python 3.6 support.
- Exclude more common dev/test files


0.48 (2022-03-13)
Expand Down
2 changes: 2 additions & 0 deletions check_manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -573,6 +573,8 @@ def default(cls):
# GitHub template files
.prune('.github')
# we can do without these in sdists
.global_exclude('.circleci/config.yml')
.global_exclude('.gitpod.yml')
.global_exclude('.travis.yml')
.global_exclude('Jenkinsfile')
# It's convenient to ship compiled .mo files in sdists, but they
Expand Down
2 changes: 2 additions & 0 deletions tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,10 +307,12 @@ def test_strip_sdist_extras(self):
strip_sdist_extras,
)
filelist = canonical_file_list([
'.circleci/config.yml',
'.github',
'.github/ISSUE_TEMPLATE',
'.github/ISSUE_TEMPLATE/bug_report.md',
'.gitignore',
'.gitpod.yml',
'.travis.yml',
'setup.py',
'setup.cfg',
Expand Down

0 comments on commit 4b94262

Please sign in to comment.