Skip to content

Commit 1ca0606

Browse files
authored
Merge branch 'main' into depr-sparse-astype
2 parents 0b6a543 + fafb129 commit 1ca0606

File tree

89 files changed

+1047
-813
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+1047
-813
lines changed

.github/workflows/posix.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ jobs:
2828
[actions-38-downstream_compat.yaml, "not slow and not network and not clipboard", "", "", "", "", ""],
2929
[actions-38-minimum_versions.yaml, "slow", "", "", "", "", ""],
3030
[actions-38-minimum_versions.yaml, "not slow and not network and not clipboard", "", "", "", "", ""],
31-
[actions-38-locale_slow.yaml, "slow", "language-pack-it xsel", "it_IT.utf8", "it_IT.utf8", "", ""],
31+
[actions-38.yaml, "not slow and not network", "language-pack-it xsel", "it_IT.utf8", "it_IT.utf8", "", ""],
32+
[actions-38.yaml, "not slow and not network", "language-pack-zh-hans xsel", "zh_CN.utf8", "zh_CN.utf8", "", ""],
3233
[actions-38.yaml, "not slow and not clipboard", "", "", "", "", ""],
33-
[actions-38-slow.yaml, "slow", "", "", "", "", ""],
34-
[actions-38-locale.yaml, "not slow and not network", "language-pack-zh-hans xsel", "zh_CN.utf8", "zh_CN.utf8", "", ""],
35-
[actions-39-slow.yaml, "slow", "", "", "", "", ""],
34+
[actions-38.yaml, "slow", "", "", "", "", ""],
3635
[actions-pypy-38.yaml, "not slow and not clipboard", "", "", "", "", "--max-worker-restart 0"],
3736
[actions-39-numpydev.yaml, "not slow and not network", "xsel", "", "", "deprecate", "-W error"],
37+
[actions-39.yaml, "slow", "", "", "", "", ""],
3838
[actions-39.yaml, "not slow and not clipboard", "", "", "", "", ""]
3939
]
4040
fail-fast: false

ci/deps/actions-38-locale.yaml

-36
This file was deleted.

ci/deps/actions-38-locale_slow.yaml

-30
This file was deleted.

ci/deps/actions-38-slow.yaml

-37
This file was deleted.

ci/deps/actions-38.yaml

+36-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,50 @@
11
name: pandas-dev
22
channels:
3-
- defaults
43
- conda-forge
54
dependencies:
65
- python=3.8
76

8-
# tools
9-
- cython>=0.29.24
7+
# test dependencies
8+
- cython=0.29.24
109
- pytest>=6.0
1110
- pytest-cov
1211
- pytest-xdist>=1.31
1312
- hypothesis>=5.5.3
13+
- psutil
1414

15-
# pandas dependencies
16-
- numpy
15+
# required dependencies
1716
- python-dateutil
18-
- nomkl
17+
- numpy
1918
- pytz
19+
20+
# optional dependencies
21+
- beautifulsoup4
22+
- blosc
23+
- bottleneck
24+
- fastparquet
25+
- fsspec
26+
- html5lib
27+
- gcsfs
28+
- jinja2
29+
- lxml
30+
- matplotlib
31+
- numba
32+
- numexpr
33+
- openpyxl
34+
- odfpy
35+
- pandas-gbq
36+
- psycopg2
37+
- pymysql
38+
- pytables
39+
- pyarrow
40+
- pyreadstat
41+
- pyxlsb
42+
- s3fs
43+
- scipy
44+
- sqlalchemy
2045
- tabulate
46+
- xarray
47+
- xlrd
48+
- xlsxwriter
49+
- xlwt
50+
- zstandard

ci/deps/actions-39-slow.yaml

-41
This file was deleted.

ci/deps/actions-39.yaml

+23-13
Original file line numberDiff line numberDiff line change
@@ -4,37 +4,47 @@ channels:
44
dependencies:
55
- python=3.9
66

7-
# tools
8-
- cython>=0.29.24
7+
# test dependencies
8+
- cython=0.29.24
99
- pytest>=6.0
1010
- pytest-cov
1111
- pytest-xdist>=1.31
1212
- hypothesis>=5.5.3
13+
- psutil
1314

14-
# pandas dependencies
15+
# required dependencies
16+
- python-dateutil
17+
- numpy
18+
- pytz
19+
20+
# optional dependencies
1521
- beautifulsoup4
22+
- blosc
1623
- bottleneck
17-
- boto3
18-
- fsspec>=0.8.0
19-
- gcsfs
24+
- fastparquet
25+
- fsspec
2026
- html5lib
27+
- gcsfs
2128
- jinja2
2229
- lxml
2330
- matplotlib
24-
- numpy # move up to solve before numba
2531
- numba
2632
- numexpr
2733
- openpyxl
28-
- pyarrow>2.0.1
34+
- odfpy
35+
- pandas-gbq
36+
- psycopg2
37+
- pymysql
2938
- pytables
30-
- python-dateutil
31-
- pytz
32-
- s3fs>=0.4.2
39+
- pyarrow
40+
- pyreadstat
41+
- pyxlsb
42+
- s3fs
3343
- scipy
3444
- sqlalchemy
45+
- tabulate
46+
- xarray
3547
- xlrd
3648
- xlsxwriter
3749
- xlwt
38-
- pyreadstat
39-
- pyxlsb
4050
- zstandard

doc/source/reference/arrays.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ be stored efficiently as a :class:`arrays.SparseArray`.
464464

465465
The ``Series.sparse`` accessor may be used to access sparse-specific attributes
466466
and methods if the :class:`Series` contains sparse values. See
467-
:ref:`api.series.sparse` for more.
467+
:ref:`api.series.sparse` and :ref:`the user guide <sparse>` for more.
468468

469469

470470
.. _api.arrays.string:

0 commit comments

Comments
 (0)