Skip to content

Commit

Permalink
Add MANIFEST.in
Browse files Browse the repository at this point in the history
  • Loading branch information
rebeccafair committed Jan 23, 2020
1 parent 716c8a9 commit 5e4b61b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
`Unreleased <https://github.com/pace-neutrons/Euphonic/compare/v0.2.1...HEAD>`_
`Unreleased <https://github.com/pace-neutrons/Euphonic/compare/v0.2.2...HEAD>`_
----------

`v0.2.2 <https://github.com/pace-neutrons/Euphonic/compare/v0.2.1...v0.2.2>`_
------

- Bug fixes:

- Add MANIFEST.in for PyPI distribution

`v0.2.1 <https://github.com/pace-neutrons/Euphonic/compare/v0.2.0...v0.2.1>`_
------

Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include c/*.h
2 changes: 1 addition & 1 deletion euphonic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.2.1'
__version__ = '0.2.2'

try:
# Create ureg here so it is only created once. However, this __init__.py
Expand Down
2 changes: 1 addition & 1 deletion release.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def release_github(test=True):
changelog_ver = re.findall('\n`(v\d+\.\d+\.\S+)\s', changelog)[0]
if setup_ver != changelog_ver:
raise Exception('setup.py/changelog.rst version mismatch!')
desc = re.search('`v\d+\.\d+\.\S+.*?^-+\n(.*)^`v', changelog,
desc = re.search('`v\d+\.\d+\.\S+.*?^-+\n(.*?)^`v', changelog,
re.DOTALL | re.MULTILINE).groups()[0].strip()

payload = {
Expand Down

0 comments on commit 5e4b61b

Please sign in to comment.