aboutsummaryrefslogtreecommitdiffstats
path: root/math/py-pandas/files
diff options
context:
space:
mode:
authorSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2018-06-03 18:17:23 +0000
committerSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2018-06-03 18:17:23 +0000
commited557fde7b7cc69d32e8e33f5c855df4a1c9de69 (patch)
tree86d6ea4a6b9c7aa86b758d1dad46aaa2142b3b5e /math/py-pandas/files
parent7f48822aeb5e196983bb43bed55b406159a2a09c (diff)
Update to 0.23.0
- Add ALCHEMY12 option - While I'm here: - Use >= instead of > for some *_DEPENDS - Update WWW Changes: https://github.com/pandas-dev/pandas/releases https://pandas.pydata.org/pandas-docs/version/0.23.0/whatsnew.html PR: 228545 Submitted by: John W. O'Brien <john@saltant.com> (maintainer)
Diffstat (limited to 'math/py-pandas/files')
-rw-r--r--math/py-pandas/files/patch-GH1871961
-rw-r--r--math/py-pandas/files/pkg-message.in3
2 files changed, 2 insertions, 62 deletions
diff --git a/math/py-pandas/files/patch-GH18719 b/math/py-pandas/files/patch-GH18719
deleted file mode 100644
index 5063af1d0fe6..000000000000
--- a/math/py-pandas/files/patch-GH18719
+++ /dev/null
@@ -1,61 +0,0 @@
-commit c753e1e08b01a438aaa252327de046109bf4bcfd
-Author: Joris Van den Bossche <jorisvandenbossche@gmail.com>
-Date: Mon Dec 11 11:57:00 2017 +0100
-
- TST: make it possible to run tests without moto installed (#18719)
-
-diff pandas/tests/io/conftest.py pandas/tests/io/conftest.py
---- pandas/tests/io/conftest.py.orig 2017-12-11 10:57:00 UTC
-+++ pandas/tests/io/conftest.py
-@@ -1,6 +1,5 @@
- import os
-
--import moto
- import pytest
- from pandas.io.parsers import read_table
-
-@@ -42,6 +41,7 @@ def s3_resource(tips_file, jsonl_file):
- is yielded by the fixture.
- """
- pytest.importorskip('s3fs')
-+ moto = pytest.importorskip('moto')
- moto.mock_s3().start()
-
- test_s3_files = [
-diff pandas/tests/io/json/test_compression.py pandas/tests/io/json/test_compression.py
---- pandas/tests/io/json/test_compression.py.orig 2017-12-11 10:57:00 UTC
-+++ pandas/tests/io/json/test_compression.py
-@@ -1,5 +1,4 @@
- import pytest
--import moto
-
- import pandas as pd
- from pandas import compat
-@@ -73,6 +72,8 @@ def test_read_zipped_json():
- def test_with_s3_url(compression):
- boto3 = pytest.importorskip('boto3')
- pytest.importorskip('s3fs')
-+ moto = pytest.importorskip('moto')
-+
- if compression == 'xz':
- tm._skip_if_no_lzma()
-
-diff pandas/tests/io/test_excel.py pandas/tests/io/test_excel.py
---- pandas/tests/io/test_excel.py.orig 2017-12-11 10:57:00 UTC
-+++ pandas/tests/io/test_excel.py
-@@ -10,7 +10,6 @@ from warnings import catch_warnings
- import numpy as np
- import pytest
- from numpy import nan
--import moto
-
- import pandas as pd
- import pandas.util.testing as tm
-@@ -616,6 +615,7 @@ class XlrdTests(ReadingTestsBase):
- def test_read_from_s3_url(self):
- boto3 = pytest.importorskip('boto3')
- pytest.importorskip('s3fs')
-+ moto = pytest.importorskip('moto')
-
- with moto.mock_s3():
- conn = boto3.resource("s3", region_name="us-east-1")
diff --git a/math/py-pandas/files/pkg-message.in b/math/py-pandas/files/pkg-message.in
index 1f97e49496c0..0781d0c3502f 100644
--- a/math/py-pandas/files/pkg-message.in
+++ b/math/py-pandas/files/pkg-message.in
@@ -1,3 +1,4 @@
===
-If you wish, install math/py-statsmodels to enable parts of pandas.stats.
+Install math/py-statsmodels to enable parts of pandas.stats.
+Install devel/py-xarray to enable the to_xarray() function.
===