Skip to content

Commit

Permalink
required statsmodels < 0.11 (#62)
Browse files Browse the repository at this point in the history
* required statsmodels < 0.11

* updated version number

* updated changelog
  • Loading branch information
tailaiw committed Feb 12, 2020
1 parent 29e761c commit 9e9b86b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -66,7 +66,7 @@
# The short X.Y version.
version = "0.5"
# The full version, including alpha/beta/rc tags.
release = "0.5.2"
release = "0.5.3"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 4 additions & 0 deletions docs/releasehistory.rst
Expand Up @@ -2,6 +2,10 @@
Release History
***************

Version 0.5.3 (Feb 12, 2020)
===================================
- Quick hotfix to avoid errors caused by statsmodels v0.11 by requiring statsmodels dependency <0.11

Version 0.5.2 (Jan 14, 2020)
===================================
- Formalized the management of releases and pre-releases, including rules of branches and versioning
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = adtk
version = 0.5.2
version = 0.5.3
author = Arundo Analytics, Inc.
maintainer = Tailai Wen
maintainer_email = tailai.wen@arundo.com
Expand Down Expand Up @@ -33,7 +33,7 @@ install_requires =
pandas>=0.23
matplotlib>=3.0
scikit-learn>=0.20
statsmodels>=0.9
statsmodels>=0.9,<0.11
packaging>=17.0
tabulate>=0.8

Expand Down
2 changes: 1 addition & 1 deletion src/adtk/__init__.py
Expand Up @@ -20,4 +20,4 @@
"""

__version__ = "0.5.2"
__version__ = "0.5.3"

0 comments on commit 9e9b86b

Please sign in to comment.