Skip to content

Commit

Permalink
include misc dir in sdist package for RPM build (PR #4450)
Browse files Browse the repository at this point in the history
# Description

The RPM builld requires the misc directory, which was removed from the sdist in #4400. This PR adds it again.

closes *Add ticket reference here*

# Self Check:

Strike through any lines that are not applicable (`~~line~~`) then check the box

- [ ] Attached issue to pull request
- [ ] Changelog entry
- [ ] Type annotations are present
- [ ] Code is clear and sufficiently documented
- [ ] No (preventable) type errors (check using make mypy or make mypy-diff)
- [ ] Sufficient test cases (reproduces the bug/tests the requested feature)
- [ ] Correct, in line with design
- [ ] End user documentation is included or an issue is created for end-user documentation (add ref to issue here: )

# Reviewer Checklist:

- [ ] Sufficient test cases (reproduces the bug/tests the requested feature)
- [ ] Code is clear and sufficiently documented
- [ ] Correct, in line with design
  • Loading branch information
sanderr authored and inmantaci committed Jun 28, 2022
1 parent fed588c commit 20123e3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@ include setup.cfg
include src/inmanta/py.typed
include src/inmanta/parser/parser.out

# explainers for compiler exceptions
recursive-include src *.j2

# data for RPM build
graft misc

global-exclude *.pyc
global-exclude */__pycache__/*
global-exclude **/.env/**
6 changes: 6 additions & 0 deletions changelogs/unreleased/packaging-include-misc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
description: include misc dir in sdist package for RPM build
change-type: patch
destination-branches:
- iso4
- iso5
- master

0 comments on commit 20123e3

Please sign in to comment.