Skip to content

Commit

Permalink
Loose NumPy and SciPy top version (#109). Add Changelog. (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
laszukdawid authored Dec 28, 2021
1 parent 9b5e15e commit d062000
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion PyEMD/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import logging

__version__ = "1.2.0"
__version__ = "1.2.1"
logger = logging.getLogger("pyemd")

from PyEMD.CEEMDAN import CEEMDAN # noqa
Expand Down
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## 1.2.1

* Removed version cap from NumPy and SciPy dependencies
* Introduction of the changelog

## 1.2.0

* Adds significance tests. Only currently added test is *Whitenoise significance check*.
2 changes: 1 addition & 1 deletion requirements-extra.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
numpy>=1.12
numpydoc
numpydoc>=1.1.0
scipy>=0.19
matplotlib
pathos>=0.2.1
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
numpy>=1.12,<=1.20
scipy>=0.19,<=1.18
numpy>=1.12
scipy>=0.19
pathos>=0.2.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup

VERSION = "1.2.0"
VERSION = "1.2.1"

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

Expand Down

0 comments on commit d062000

Please sign in to comment.