-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- replace impe with importlib - add missing MANIFEST.in
- Loading branch information
Showing
4 changed files
with
54 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
include setup.py | ||
include README.rst | ||
include README-edflib.md | ||
include LICENSE | ||
include *.txt | ||
include setup.cfg | ||
include pyproject.toml | ||
include MANIFEST.in | ||
|
||
# All source files | ||
recursive-include pyedflib * | ||
# All documentation | ||
recursive-include doc * | ||
recursive-include demo * | ||
|
||
# Add build and testing tools | ||
include pytest.ini | ||
|
||
# Exclude what we don't want to include | ||
prune build | ||
prune dist | ||
prune doc/build | ||
prune util | ||
prune */__pycache__ | ||
|
||
global-exclude *.py[cod] *.egg *.egg-info | ||
global-exclude *~ *.bak *.swp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
============================= | ||
PyEDFlib 0.1.26 Release Notes | ||
============================= | ||
|
||
.. contents:: | ||
|
||
- replace impe with importlib | ||
- add missing MANIFEST.in | ||
|
||
Authors | ||
======= | ||
|
||
* Holger Nahrstaedt | ||
* skjerns | ||
|
||
Issues closed for v0.1.26 | ||
------------------------- | ||
* #165 DeprecationWarning (imp) | ||
* #168 0.1.25 fails to configure: ValueError: 'pyedflib/_extensions/_pyedflib.pyx' doesn't match any files | ||
|
||
Pull requests for v0.1.26 | ||
------------------------- | ||
* #166 replace imp with imporlib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.. include:: ../release/0.1.26-notes.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters