Skip to content

Commit 4ab6a59

Browse files
Drop "WASM (pyodide and pyscript)" from Arrow compatibility notes
1 parent 834f022 commit 4ab6a59

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

web/pandas/pdeps/0010-required-pyarrow-dependency.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ PyArrow is an optional dependency of pandas that provides a wide range of supple
4040
data types within the `ExtensionArray` interface
4141
- Since pandas 2.0.0, all I/O readers have the option to return PyArrow-backed data types, and many methods
4242
now utilize PyArrow compute functions to
43-
accelerate PyArrow-backed data in pandas, notably string and datetime types.
43+
accelerate PyArrow-backed data in pandas, notibly string and datetime types.
4444

4545
As of pandas 2.0, one can feasibly utilize PyArrow as an alternative data representation to NumPy with advantages such as:
4646

@@ -117,7 +117,7 @@ In[4]: %timeit ser_string.str.startswith("a")
117117

118118
### Immediate User Benefit 2: Nested Datatypes
119119

120-
Currently, if you try storing `dict`s in a pandas `Series`, you will again get the horrendous `object` dtype:
120+
Currently, if you try storing `dict`s in a pandas `Series`, you will again get the horrendeous `object` dtype:
121121
```python
122122
In [6]: pd.Series([{'a': 1, 'b': 2}, {'a': 2, 'b': 99}])
123123
Out[6]:
@@ -185,7 +185,6 @@ Additionally, if a user is installing pandas in an environment where wheels are
185185
the user will need to also build Arrow C++ and related dependencies when installing from source. These environments include
186186

187187
- Alpine linux (commonly used as a base for Docker containers)
188-
- WASM (pyodide and pyscript)
189188
- Python development versions
190189

191190
Lastly, pandas development and releases will need to be mindful of PyArrow's development and release cadance. For example when

0 commit comments

Comments
 (0)