Skip to content

Commit d062000

Browse files
authored
Loose NumPy and SciPy top version (#109). Add Changelog. (#110)
1 parent 9b5e15e commit d062000

5 files changed

Lines changed: 13 additions & 5 deletions

File tree

PyEMD/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import logging
22

3-
__version__ = "1.2.0"
3+
__version__ = "1.2.1"
44
logger = logging.getLogger("pyemd")
55

66
from PyEMD.CEEMDAN import CEEMDAN # noqa

changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## 1.2.1
2+
3+
* Removed version cap from NumPy and SciPy dependencies
4+
* Introduction of the changelog
5+
6+
## 1.2.0
7+
8+
* Adds significance tests. Only currently added test is *Whitenoise significance check*.

requirements-extra.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
numpy>=1.12
2-
numpydoc
2+
numpydoc>=1.1.0
33
scipy>=0.19
44
matplotlib
55
pathos>=0.2.1

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
numpy>=1.12,<=1.20
2-
scipy>=0.19,<=1.18
1+
numpy>=1.12
2+
scipy>=0.19
33
pathos>=0.2.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup
22

3-
VERSION = "1.2.0"
3+
VERSION = "1.2.1"
44

55
DESCRIPTION = "Implementation of the Empirical Mode Decomposition (EMD) and its variations"
66

0 commit comments

Comments
 (0)