Skip to content

Commit

Permalink
Release 0.1.26
Browse files Browse the repository at this point in the history
- replace impe with importlib
- add missing MANIFEST.in
  • Loading branch information
holgern committed Feb 21, 2022
1 parent f89479b commit c79797f
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 3 deletions.
27 changes: 27 additions & 0 deletions MANIFEST.in
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
23 changes: 23 additions & 0 deletions doc/release/0.1.26-notes.rst
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
1 change: 1 addition & 0 deletions doc/source/release.0.1.26.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. include:: ../release/0.1.26-notes.rst
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@


MAJOR = 0
MINOR = 2
MICRO = 0
ISRELEASED = False
MINOR = 1
MICRO = 26
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)

# Version of Numpy required for setup
Expand Down

0 comments on commit c79797f

Please sign in to comment.