Skip to content

Commit 9b3fc75

Browse files
rbenesCloseChoice
authored andcommitted
Update pytables version (pandas-dev#33580)
1 parent 6f1420e commit 9b3fc75

File tree

6 files changed

+51
-8
lines changed

6 files changed

+51
-8
lines changed

ci/deps/azure-36-minimum_versions.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies:
2121
- numexpr=2.6.2
2222
- numpy=1.13.3
2323
- openpyxl=2.5.7
24-
- pytables=3.4.2
24+
- pytables=3.4.3
2525
- python-dateutil=2.7.3
2626
- pytz=2017.2
2727
- scipy=0.19.0

doc/source/getting_started/install.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ BeautifulSoup4 4.6.0 HTML parser for read_html (see :ref
262262
Jinja2 Conditional formatting with DataFrame.style
263263
PyQt4 Clipboard I/O
264264
PyQt5 Clipboard I/O
265-
PyTables 3.4.2 HDF5-based reading / writing
265+
PyTables 3.4.3 HDF5-based reading / writing
266266
SQLAlchemy 1.1.4 SQL support for databases other than sqlite
267267
SciPy 0.19.0 Miscellaneous statistical functions
268268
XLsxWriter 0.9.8 Excel writing
@@ -279,7 +279,7 @@ psycopg2 PostgreSQL engine for sqlalchemy
279279
pyarrow 0.12.0 Parquet, ORC (requires 0.13.0), and feather reading / writing
280280
pymysql 0.7.11 MySQL engine for sqlalchemy
281281
pyreadstat SPSS files (.sav) reading
282-
pytables 3.4.2 HDF5 reading / writing
282+
pytables 3.4.3 HDF5 reading / writing
283283
pyxlsb 1.0.6 Reading for xlsb files
284284
qtpy Clipboard I/O
285285
s3fs 0.3.0 Amazon S3 access

doc/source/whatsnew/v1.1.0.rst

+44-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Other enhancements
106106
Increased minimum versions for dependencies
107107
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
108108

109-
Some minimum supported versions of dependencies were updated (:issue:`29766`, :issue:`29723`).
109+
Some minimum supported versions of dependencies were updated (:issue:`29766`, :issue:`29723`, pytables >= 3.4.3).
110110
If installed, we now require:
111111

112112
+-----------------+-----------------+----------+---------+
@@ -115,6 +115,49 @@ If installed, we now require:
115115
| python-dateutil | 2.7.3 | X | |
116116
+-----------------+-----------------+----------+---------+
117117

118+
For `optional libraries <https://dev.pandas.io/docs/install.html#dependencies>`_ the general recommendation is to use the latest version.
119+
The following table lists the lowest version per library that is currently being tested throughout the development of pandas.
120+
Optional libraries below the lowest tested version may still work, but are not considered supported.
121+
122+
+-----------------+-----------------+---------+
123+
| Package | Minimum Version | Changed |
124+
+=================+=================+=========+
125+
| beautifulsoup4 | 4.6.0 | |
126+
+-----------------+-----------------+---------+
127+
| fastparquet | 0.3.2 | |
128+
+-----------------+-----------------+---------+
129+
| gcsfs | 0.2.2 | |
130+
+-----------------+-----------------+---------+
131+
| lxml | 3.8.0 | |
132+
+-----------------+-----------------+---------+
133+
| matplotlib | 2.2.2 | |
134+
+-----------------+-----------------+---------+
135+
| numba | 0.46.0 | |
136+
+-----------------+-----------------+---------+
137+
| openpyxl | 2.5.7 | |
138+
+-----------------+-----------------+---------+
139+
| pyarrow | 0.13.0 | |
140+
+-----------------+-----------------+---------+
141+
| pymysql | 0.7.1 | |
142+
+-----------------+-----------------+---------+
143+
| pytables | 3.4.3 | X |
144+
+-----------------+-----------------+---------+
145+
| s3fs | 0.3.0 | |
146+
+-----------------+-----------------+---------+
147+
| scipy | 0.19.0 | |
148+
+-----------------+-----------------+---------+
149+
| sqlalchemy | 1.1.4 | |
150+
+-----------------+-----------------+---------+
151+
| xarray | 0.8.2 | |
152+
+-----------------+-----------------+---------+
153+
| xlrd | 1.1.0 | |
154+
+-----------------+-----------------+---------+
155+
| xlsxwriter | 0.9.8 | |
156+
+-----------------+-----------------+---------+
157+
| xlwt | 1.2.0 | |
158+
+-----------------+-----------------+---------+
159+
160+
See :ref:`install.dependencies` and :ref:`install.optional_dependencies` for more.
118161

119162
Development Changes
120163
^^^^^^^^^^^^^^^^^^^

environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ dependencies:
9797
- python-snappy # required by pyarrow
9898

9999
- pyqt>=5.9.2 # pandas.read_clipboard
100-
- pytables>=3.4.2 # pandas.read_hdf, DataFrame.to_hdf
100+
- pytables>=3.4.3 # pandas.read_hdf, DataFrame.to_hdf
101101
- s3fs # pandas.read_csv... when using 's3://...' path
102102
- sqlalchemy # pandas.read_sql, DataFrame.to_sql
103103
- xarray # DataFrame.to_xarray

pandas/compat/_optional.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
"openpyxl": "2.5.7",
1818
"pandas_gbq": "0.8.0",
1919
"pyarrow": "0.13.0",
20-
"pytables": "3.4.2",
20+
"pytables": "3.4.3",
2121
"pytest": "5.0.1",
2222
"pyxlsb": "1.0.6",
2323
"s3fs": "0.3.0",
2424
"scipy": "0.19.0",
2525
"sqlalchemy": "1.1.4",
26-
"tables": "3.4.2",
26+
"tables": "3.4.3",
2727
"tabulate": "0.8.3",
2828
"xarray": "0.8.2",
2929
"xlrd": "1.1.0",

requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ fastparquet>=0.3.2
6464
pyarrow>=0.13.1
6565
python-snappy
6666
pyqt5>=5.9.2
67-
tables>=3.4.2
67+
tables>=3.4.3
6868
s3fs
6969
sqlalchemy
7070
xarray

0 commit comments

Comments
 (0)