Skip to content

Commit 30cd850

Browse files
Merge pull request #7 from Techtonique/less-reqs
fix dependencies issues
2 parents 7e1fec8 + 98ab8ff commit 30cd850

File tree

8 files changed

+18
-69
lines changed

8 files changed

+18
-69
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,3 +109,4 @@ R-package/.Rproj.*
109109

110110
# Apple stuff
111111
.DS_Store
112+
ahead/.DS_Store

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
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`

ahead/.DS_Store

0 Bytes
Binary file not shown.

ahead/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = """T. Moudiki"""
44
__email__ = "[email protected]"
5-
__version__ = "0.6.0"
5+
__version__ = "0.6.1"
66

77
from .ARMAGARCH import ArmaGarch
88
from .Basic import BasicForecaster

examples/dynrm.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,6 @@
33
from ahead import DynamicRegressor, EAT
44
from 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
138
h = 5

requirements.txt

Lines changed: 7 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,7 @@
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

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from codecs import open
33
from os import path
44

5-
__version__ = "0.6.0"
5+
__version__ = "0.6.1"
66

77
here = path.abspath(path.dirname(__file__))
88

@@ -40,8 +40,9 @@
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="[email protected]",
47+
python_requires=">=3.9"
4748
)

0 commit comments

Comments
 (0)