File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -109,3 +109,4 @@ R-package/.Rproj.*
109109
110110# Apple stuff
111111.DS_Store
112+ ahead /.DS_Store
Original file line number Diff line number Diff line change 1+ # version 0.6.1
2+
3+ - Reduce number of required packages depencies
4+ - Fix rpy2 requirement (version 3.4.5)
5+ - Requires Python version >= 3.9
6+
17# version 0.5.0
28
39- add dropout regularization to ` Ridge2Regressor `
Original file line number Diff line number Diff line change 22
33__author__ = """T. Moudiki"""
44__email__ = "thierry.moudiki@gmail.com"
5- __version__ = "0.6.0 "
5+ __version__ = "0.6.1 "
66
77from .ARMAGARCH import ArmaGarch
88from .Basic import BasicForecaster
Original file line number Diff line number Diff line change 33from ahead import DynamicRegressor , EAT
44from time import time
55
6- import warnings
7- import itertools
8- import matplotlib .pyplot as plt
9- plt .style .use ('fivethirtyeight' )
10-
116
127# Forecasting horizon
138h = 5
Original file line number Diff line number Diff line change 1- alabaster == 0.7.12
2- appdirs == 1.4.4
3- Babel >= 2.9.1
4- bleach == 3.3.0
5- bump2version == 1.0.1
6- certifi == 2020.12.5
7- cffi == 1.14.5
8- chardet == 4.0.0
9- click == 7.1.2
10- colorama == 0.4.4
11- coverage == 5.5
12- distlib == 0.3.1
13- docutils == 0.17.1
14- filelock == 3.0.12
15- flake8 == 3.9.0
16- fuzzywuzzy == 0.18.0
17- idna == 2.10
18- imagesize == 1.2.0
19- importlib-metadata == 4.0.1
20- Jinja2 == 2.11.3
21- keyring == 23.0.1
22- MarkupSafe == 1.1.1
23- mccabe == 0.6.1
24- numpy == 1.21.0
25- packaging == 20.9
26- pandas == 1.2.4
27- pkginfo == 1.7.0
28- pluggy == 0.13.1
29- py == 1.10.0
30- pycodestyle == 2.7.0
31- pycparser == 2.20
32- pyflakes == 2.3.1
33- Pygments == 2.8.1
34- pyparsing == 2.4.7
35- python-dateutil == 2.8.1
36- python-Levenshtein == 0.12.2
37- pytz == 2021.1
38- readme-renderer == 29.0
39- requests == 2.25.1
40- requests-toolbelt == 0.9.1
41- rfc3986 == 1.4.0
42- rpy2 == 3.4.3
43- six == 1.15.0
44- snowballstemmer == 2.1.0
45- Sphinx == 3.5.3
46- sphinxcontrib-applehelp == 1.0.2
47- sphinxcontrib-devhelp == 1.0.2
48- sphinxcontrib-htmlhelp == 1.0.3
49- sphinxcontrib-jsmath == 1.0.1
50- sphinxcontrib-qthelp == 1.0.3
51- sphinxcontrib-serializinghtml == 1.1.4
52- toml == 0.10.2
53- tox == 3.23.0
54- tqdm == 4.60.0
55- twine == 3.4.1
56- tzlocal == 2.1
57- urllib3 >= 1.26.5
58- virtualenv == 20.4.3
59- watchdog == 2.0.2
60- webencodings == 0.5.1
61- zipp == 3.4.1
1+ numpy
2+ scipy
3+ pandas
4+ scikit-learn
5+ rpy2 == 3.4.5
6+ fuzzywuzzy
7+ python-Levenshtein
Original file line number Diff line number Diff line change 22from codecs import open
33from os import path
44
5- __version__ = "0.6.0 "
5+ __version__ = "0.6.1 "
66
77here = path .abspath (path .dirname (__file__ ))
88
4040 keywords = "" ,
4141 packages = find_packages (exclude = ["docs" , "tests*" ]),
4242 include_package_data = True ,
43- author = "Thierry Moudiki" ,
43+ author = "T. Moudiki" ,
4444 install_requires = install_requires ,
4545 dependency_links = dependency_links ,
4646 author_email = "thierry.moudiki@gmail.com" ,
47+ python_requires = ">=3.9"
4748)
You can’t perform that action at this time.
0 commit comments