From 6f936c89203c41844e218d48d096c8ce6aef8e19 Mon Sep 17 00:00:00 2001 From: Roman Yurchak Date: Tue, 2 Nov 2021 14:54:16 +0100 Subject: [PATCH] PKG Update pandas to 1.3.4 (#1922) --- packages/pandas/meta.yaml | 6 +++--- packages/pandas/test_pandas.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/pandas/meta.yaml b/packages/pandas/meta.yaml index eb7c4a263..9853f8c39 100644 --- a/packages/pandas/meta.yaml +++ b/packages/pandas/meta.yaml @@ -1,10 +1,10 @@ package: name: pandas - version: 1.0.5 + version: 1.3.4 source: - url: https://files.pythonhosted.org/packages/31/29/ede692aa6547dfc1f07a4d69e8411b35225218bcfbe9787e78b67a35d103/pandas-1.0.5.tar.gz - sha256: 69c5d920a0b2a9838e677f78f4dde506b95ea8e4d30da25859db6469ded84fa8 + url: https://files.pythonhosted.org/packages/58/58/b729eda34f78060e14cb430c91d4f7ba3cf1e34797976877a3a1125ea5b2/pandas-1.3.4.tar.gz + sha256: a2aa18d3f0b7d538e21932f637fbfe8518d085238b429e4790a35e1e44a96ffc patches: - patches/fix_json_signature.patch diff --git a/packages/pandas/test_pandas.py b/packages/pandas/test_pandas.py index 3df8523c3..5ef85d815 100644 --- a/packages/pandas/test_pandas.py +++ b/packages/pandas/test_pandas.py @@ -44,7 +44,7 @@ def test_pandas(selenium, request): def test_extra_import(selenium, request): selenium.load_package("pandas") - selenium.run("from pandas import Series, DataFrame, Panel") + selenium.run("from pandas import Series, DataFrame") @pytest.mark.driver_timeout(40)