Skip to content

Commit

Permalink
Fix issue #123: MANIFEST.in is still required for Python < 3.8 to pac…
Browse files Browse the repository at this point in the history
…k data files
  • Loading branch information
ymattw committed Nov 13, 2024
1 parent 7e6c787 commit c9c96fc
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
Change log
==========

Version 1.4 (2024-11-13)
Version 1.4.1 (2024-11-13)

- Fix setup() dependency: MANIFEST.in is still required for Python < 3.8 to
pack data files

Version 1.4 (2024-11-13) *Revoked due to #123*

- Fine-grained, word-level diff for change blocks
- New ``--theme`` option for selecting different themes
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include CHANGES.rst
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,14 @@
entry_points={
'console_scripts': [
'ydiff = ydiff:main',
]
}
],
},
include_package_data=True,
package_data={
'ydiff': [
'CHANGES.rst',
],
},
)

# vim:set et sts=4 sw=4 tw=79:
2 changes: 1 addition & 1 deletion ydiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from typing import List, Tuple

PKG_INFO = {
'version' : '1.4',
'version' : '1.4.1',
'license' : 'BSD-3',
'author' : 'Matt Wang',
'url' : 'https://github.com/ymattw/ydiff',
Expand Down

0 comments on commit c9c96fc

Please sign in to comment.