PKG Update pandas to 1.3.4 (#1922)

This commit is contained in:
Roman Yurchak 2021-11-02 14:54:16 +01:00 committed by GitHub
parent 4042db2615
commit 6f936c8920
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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)