Skip to content

Commit fe93567

Browse files
authored
Merge branch '2.2.x' into 2.2.x-pr59144backport
2 parents 495c9ed + 4a20adb commit fe93567

27 files changed

+225
-184
lines changed

.github/actions/build_pandas/action.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@ runs:
2828
fi
2929
shell: bash -el {0}
3030

31+
- name: Uninstall nomkl
32+
run: |
33+
if conda list nomkl | grep nomkl 1>/dev/null; then
34+
conda remove nomkl -y
35+
fi
36+
shell: bash -el {0}
37+
3138
- name: Build Pandas
3239
run: |
3340
export CFLAGS="$CFLAGS ${{ inputs.cflags_adds }}"

ci/deps/actions-310.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ dependencies:
2424

2525
# optional dependencies
2626
- beautifulsoup4>=4.11.2
27-
# https://github.com/conda-forge/pytables-feedstock/issues/97
28-
- c-blosc2=2.13.2
2927
- blosc>=1.21.3
3028
- bottleneck>=1.3.6
3129
- fastparquet>=2022.12.0

ci/deps/actions-311-downstream_compat.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ dependencies:
2626

2727
# optional dependencies
2828
- beautifulsoup4>=4.11.2
29-
# https://github.com/conda-forge/pytables-feedstock/issues/97
30-
- c-blosc2=2.13.2
3129
- blosc>=1.21.3
3230
- bottleneck>=1.3.6
3331
- fastparquet>=2022.12.0

ci/deps/actions-311.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ dependencies:
2424

2525
# optional dependencies
2626
- beautifulsoup4>=4.11.2
27-
# https://github.com/conda-forge/pytables-feedstock/issues/97
28-
- c-blosc2=2.13.2
2927
- blosc>=1.21.3
3028
- bottleneck>=1.3.6
3129
- fastparquet>=2022.12.0

ci/deps/actions-312.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ dependencies:
2424

2525
# optional dependencies
2626
- beautifulsoup4>=4.11.2
27-
# https://github.com/conda-forge/pytables-feedstock/issues/97
28-
- c-blosc2=2.13.2
2927
- blosc>=1.21.3
3028
- bottleneck>=1.3.6
3129
- fastparquet>=2022.12.0

ci/deps/actions-39-minimum_versions.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ dependencies:
2727

2828
# optional dependencies
2929
- beautifulsoup4=4.11.2
30-
# https://github.com/conda-forge/pytables-feedstock/issues/97
31-
- c-blosc2=2.13.2
3230
- blosc=1.21.3
3331
- bottleneck=1.3.6
3432
- fastparquet=2022.12.0

ci/deps/actions-39.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ dependencies:
2424

2525
# optional dependencies
2626
- beautifulsoup4>=4.11.2
27-
# https://github.com/conda-forge/pytables-feedstock/issues/97
28-
- c-blosc2=2.13.2
2927
- blosc>=1.21.3
3028
- bottleneck>=1.3.6
3129
- fastparquet>=2022.12.0

ci/deps/circle-310-arm64.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ dependencies:
2525

2626
# optional dependencies
2727
- beautifulsoup4>=4.11.2
28-
# https://github.com/conda-forge/pytables-feedstock/issues/97
29-
- c-blosc2=2.13.2
3028
- blosc>=1.21.3
3129
- bottleneck>=1.3.6
3230
- fastparquet>=2022.12.0

doc/source/user_guide/basics.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,11 +160,10 @@ Here is a sample (using 100 column x 100,000 row ``DataFrames``):
160160
.. csv-table::
161161
:header: "Operation", "0.11.0 (ms)", "Prior Version (ms)", "Ratio to Prior"
162162
:widths: 25, 25, 25, 25
163-
:delim: ;
164163

165-
``df1 > df2``; 13.32; 125.35; 0.1063
166-
``df1 * df2``; 21.71; 36.63; 0.5928
167-
``df1 + df2``; 22.04; 36.50; 0.6039
164+
``df1 > df2``, 13.32, 125.35, 0.1063
165+
``df1 * df2``, 21.71, 36.63, 0.5928
166+
``df1 + df2``, 22.04, 36.50, 0.6039
168167

169168
You are highly encouraged to install both libraries. See the section
170169
:ref:`Recommended Dependencies <install.recommended_dependencies>` for more installation info.

doc/source/user_guide/gotchas.rst

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -315,19 +315,8 @@ Why not make NumPy like R?
315315

316316
Many people have suggested that NumPy should simply emulate the ``NA`` support
317317
present in the more domain-specific statistical programming language `R
318-
<https://www.r-project.org/>`__. Part of the reason is the NumPy type hierarchy:
319-
320-
.. csv-table::
321-
:header: "Typeclass","Dtypes"
322-
:widths: 30,70
323-
:delim: |
324-
325-
``numpy.floating`` | ``float16, float32, float64, float128``
326-
``numpy.integer`` | ``int8, int16, int32, int64``
327-
``numpy.unsignedinteger`` | ``uint8, uint16, uint32, uint64``
328-
``numpy.object_`` | ``object_``
329-
``numpy.bool_`` | ``bool_``
330-
``numpy.character`` | ``bytes_, str_``
318+
<https://www.r-project.org/>`__. Part of the reason is the
319+
`NumPy type hierarchy <https://numpy.org/doc/stable/user/basics.types.html>`__.
331320

332321
The R language, by contrast, only has a handful of built-in data types:
333322
``integer``, ``numeric`` (floating-point), ``character``, and

0 commit comments

Comments
 (0)