summaryrefslogtreecommitdiff
path: root/dev-python/statsmodels/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-01-15 15:51:32 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-01-15 15:51:32 +0000
commit21435953e16cda318a82334ddbadb3b5c36d9ea7 (patch)
treee1810a4b135afce04b34862ef0fab2bfaeb8aeca /dev-python/statsmodels/files
parent7bc9c63c9da678a7e6fceb095d56c634afd22c56 (diff)
gentoo resync : 15.01.2020
Diffstat (limited to 'dev-python/statsmodels/files')
-rw-r--r--dev-python/statsmodels/files/statsmodels-0.6.1-numpy-1.10.patch20
-rw-r--r--dev-python/statsmodels/files/statsmodels-0.6.1-pandas-0.17.0.patch30
2 files changed, 0 insertions, 50 deletions
diff --git a/dev-python/statsmodels/files/statsmodels-0.6.1-numpy-1.10.patch b/dev-python/statsmodels/files/statsmodels-0.6.1-numpy-1.10.patch
deleted file mode 100644
index 2d9720c5fec6..000000000000
--- a/dev-python/statsmodels/files/statsmodels-0.6.1-numpy-1.10.patch
+++ /dev/null
@@ -1,20 +0,0 @@
- statsmodels/tsa/ar_model.py | 6 ++----
- 1 file changed, 2 insertions(+), 4 deletions(-)
-
-diff --git a/statsmodels/tsa/ar_model.py b/statsmodels/tsa/ar_model.py
-index f0af7ee..fe05634 100644
---- a/statsmodels/tsa/ar_model.py
-+++ b/statsmodels/tsa/ar_model.py
-@@ -256,10 +256,8 @@ class AR(tsbase.TimeSeriesModel):
-
- Vpinv = np.zeros((p, p), dtype=params.dtype)
- for i in range(1, p1):
-- Vpinv[i-1, i-1:] = np.correlate(params0, params0[:i],
-- old_behavior=False)[:-1]
-- Vpinv[i-1, i-1:] -= np.correlate(params0[-i:], params0,
-- old_behavior=False)[:-1]
-+ Vpinv[i-1, i-1:] = np.correlate(params0, params0[:i])[:-1]
-+ Vpinv[i-1, i-1:] -= np.correlate(params0[-i:], params0)[:-1]
-
- Vpinv = Vpinv + Vpinv.T - np.diag(Vpinv.diagonal())
- return Vpinv
diff --git a/dev-python/statsmodels/files/statsmodels-0.6.1-pandas-0.17.0.patch b/dev-python/statsmodels/files/statsmodels-0.6.1-pandas-0.17.0.patch
deleted file mode 100644
index 540135c9e125..000000000000
--- a/dev-python/statsmodels/files/statsmodels-0.6.1-pandas-0.17.0.patch
+++ /dev/null
@@ -1,30 +0,0 @@
- setup.py | 2 +-
- statsmodels/tools/testing.py | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/setup.py b/setup.py
-index 1a7da9a..a6d1b33 100644
---- a/setup.py
-+++ b/setup.py
-@@ -134,7 +134,7 @@ def check_dependency_versions(min_versions):
- (spversion, min_versions['scipy']))
-
- try:
-- from pandas.version import short_version as pversion
-+ from pandas import __version__ as pversion
- except ImportError:
- install_requires.append('pandas')
- else:
-diff --git a/statsmodels/tools/testing.py b/statsmodels/tools/testing.py
-index 1fde1de..92e77fc 100644
---- a/statsmodels/tools/testing.py
-+++ b/statsmodels/tools/testing.py
-@@ -17,7 +17,7 @@ def strip_rc(version):
- def is_pandas_min_version(min_version):
- '''check whether pandas is at least min_version
- '''
-- from pandas.version import short_version as pversion
-+ from pandas import __version__ as pversion
- return StrictVersion(strip_rc(pversion)) >= min_version
-
-