Skip to content

Commit ef9416c

Browse files
authored
DEPS: bump pyarrow min to 1.0 pandas-dev#41329 (pandas-dev#44064)
1 parent c4cce9b commit ef9416c

10 files changed

+9
-18
lines changed

ci/deps/actions-38-db-min.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies:
3131
- openpyxl
3232
- pandas-gbq
3333
- protobuf>=3.12.4
34-
- pyarrow=0.17.1 # GH 38803
34+
- pyarrow=1.0.1
3535
- pytables>=3.6.1
3636
- scipy
3737
- xarray=0.15.1

ci/deps/actions-38-db.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencies:
3030
- openpyxl
3131
- pandas-gbq
3232
- psycopg2
33-
- pyarrow>=0.17.0
33+
- pyarrow>=1.0.1
3434
- pymysql
3535
- pytables
3636
- python-snappy

ci/deps/actions-38-minimum_versions.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dependencies:
2323
- pytables=3.6.1
2424
- python-dateutil=2.8.1
2525
- pytz=2020.1
26-
- pyarrow=0.17.0
26+
- pyarrow=1.0.1
2727
- scipy=1.4.1
2828
- xlrd=2.0.1
2929
- xlsxwriter=1.2.2

ci/deps/azure-macos-38.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies:
2222
- numexpr
2323
- numpy=1.18.5
2424
- openpyxl
25-
- pyarrow=0.17
25+
- pyarrow=1.0.1
2626
- pytables
2727
- python-dateutil==2.8.1
2828
- pytz

ci/deps/azure-windows-38.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies:
2525
- numpy=1.18
2626
- openpyxl
2727
- jinja2
28-
- pyarrow=0.17.0
28+
- pyarrow=1.0.1
2929
- pytables
3030
- python-dateutil
3131
- pytz

doc/source/getting_started/install.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ PyTables 3.6.1 HDF5-based reading / writing
360360
blosc 1.20.1 Compression for HDF5
361361
zlib Compression for HDF5
362362
fastparquet 0.4.0 Parquet reading / writing
363-
pyarrow 0.17.0 Parquet, ORC, and feather reading / writing
363+
pyarrow 1.0.1 Parquet, ORC, and feather reading / writing
364364
pyreadstat SPSS files (.sav) reading
365365
========================= ================== =============================================================
366366

doc/source/user_guide/io.rst

-9
Original file line numberDiff line numberDiff line change
@@ -5271,15 +5271,6 @@ Several caveats:
52715271

52725272
See the `Full Documentation <https://github.com/wesm/feather>`__.
52735273

5274-
.. ipython:: python
5275-
:suppress:
5276-
5277-
import warnings
5278-
5279-
# This can be removed once building with pyarrow >=0.15.0
5280-
warnings.filterwarnings("ignore", "The Sparse", FutureWarning)
5281-
5282-
52835274
.. ipython:: python
52845275
52855276
df = pd.DataFrame(

doc/source/whatsnew/v1.4.0.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ Optional libraries below the lowest tested version may still work, but are not c
298298
+-----------------+-----------------+---------+
299299
| openpyxl | 3.0.2 | X |
300300
+-----------------+-----------------+---------+
301-
| pyarrow | 0.17.0 | |
301+
| pyarrow | 1.0.1 | X |
302302
+-----------------+-----------------+---------+
303303
| pymysql | 0.10.1 | X |
304304
+-----------------+-----------------+---------+

environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ dependencies:
100100
- odfpy
101101

102102
- fastparquet>=0.4.0 # pandas.read_parquet, DataFrame.to_parquet
103-
- pyarrow>=0.17.0 # pandas.read_parquet, DataFrame.to_parquet, pandas.read_feather, DataFrame.to_feather
103+
- pyarrow>=1.0.1 # pandas.read_parquet, DataFrame.to_parquet, pandas.read_feather, DataFrame.to_feather
104104
- python-snappy # required by pyarrow
105105

106106
- pytables>=3.6.1 # pandas.read_hdf, DataFrame.to_hdf

requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ xlsxwriter
6565
xlwt
6666
odfpy
6767
fastparquet>=0.4.0
68-
pyarrow>=0.17.0
68+
pyarrow>=1.0.1
6969
python-snappy
7070
tables>=3.6.1
7171
s3fs>=0.4.0

0 commit comments

Comments
 (0)