Skip to content

Commit 7562f93

Browse files
authored
Merge pull request #224 from pandas-dev/master
Sync Fork from Upstream Repo
2 parents 6cd115a + 51eee87 commit 7562f93

File tree

3 files changed

+10
-14
lines changed

3 files changed

+10
-14
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -133,15 +133,15 @@ jobs:
133133
echo "${{ secrets.server_ssh_key }}" > ~/.ssh/id_rsa
134134
chmod 600 ~/.ssh/id_rsa
135135
echo "${{ secrets.server_ip }} ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBE1Kkopomm7FHG5enATf7SgnpICZ4W2bw+Ho+afqin+w7sMcrsa0je7sbztFAV8YchDkiBKnWTG4cRT+KZgZCaY=" > ~/.ssh/known_hosts
136-
if: ${{github.event_name == 'push' && github.ref == 'refs/head/master'}}
136+
if: ${{github.event_name == 'push' && github.ref == 'refs/heads/master'}}
137137

138138
- name: Upload web
139139
run: rsync -az --delete --exclude='pandas-docs' --exclude='docs' --exclude='Pandas_Cheat_Sheet*' web/build/ docs@${{ secrets.server_ip }}:/usr/share/nginx/pandas
140-
if: ${{github.event_name == 'push' && github.ref == 'refs/head/master'}}
140+
if: ${{github.event_name == 'push' && github.ref == 'refs/heads/master'}}
141141

142142
- name: Upload dev docs
143143
run: rsync -az --delete doc/build/html/ docs@${{ secrets.server_ip }}:/usr/share/nginx/pandas/pandas-docs/dev
144-
if: ${{github.event_name == 'push' && github.ref == 'refs/head/master'}}
144+
if: ${{github.event_name == 'push' && github.ref == 'refs/heads/master'}}
145145

146146
- name: Move docs into site directory
147147
run: mv doc/build/html web/build/docs

doc/source/ecosystem.rst

+6
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,12 @@ provides a familiar ``DataFrame`` interface for out-of-core, parallel and distri
445445

446446
Dask-ML enables parallel and distributed machine learning using Dask alongside existing machine learning libraries like Scikit-Learn, XGBoost, and TensorFlow.
447447

448+
`Ibis <https://ibis-project.org/docs/>`__
449+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
450+
451+
Ibis offers a standard way to write analytics code, that can be run in multiple engines. It helps in bridging the gap between local Python environments (like pandas) and remote storage and execution systems like Hadoop components (like HDFS, Impala, Hive, Spark) and SQL databases (Postgres, etc.).
452+
453+
448454
`Koalas <https://koalas.readthedocs.io/en/latest/>`__
449455
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
450456

pandas/tests/scalar/timedelta/test_arithmetic.py

+1-11
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,13 @@
1010
import numpy as np
1111
import pytest
1212

13-
from pandas.compat import is_numpy_dev
1413
from pandas.errors import OutOfBoundsTimedelta
1514

1615
import pandas as pd
1716
from pandas import (
1817
NaT,
1918
Timedelta,
2019
Timestamp,
21-
compat,
2220
offsets,
2321
)
2422
import pandas._testing as tm
@@ -434,15 +432,7 @@ def test_td_div_numeric_scalar(self):
434432
"nan",
435433
[
436434
np.nan,
437-
pytest.param(
438-
np.float64("NaN"),
439-
marks=pytest.mark.xfail(
440-
# Works on numpy dev only in python 3.9
441-
is_numpy_dev and not compat.PY39,
442-
raises=RuntimeWarning,
443-
reason="https://github.com/pandas-dev/pandas/issues/31992",
444-
),
445-
),
435+
np.float64("NaN"),
446436
float("nan"),
447437
],
448438
)

0 commit comments

Comments
 (0)