Skip to content

Commit d136d39

Browse files
committed
Undo pytables
1 parent bc0672a commit d136d39

12 files changed

+12
-14
lines changed

ci/deps/actions-310-minimum_versions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ dependencies:
4646
- pymysql=1.1.0
4747
- pyqt=5.15.9
4848
- pyreadstat=1.2.6
49-
- pytables=3.9.2
49+
- pytables=3.8.0
5050
- python-calamine=0.1.7
5151
- pytz=2023.4
5252
- pyxlsb=1.0.10

ci/deps/actions-310.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ dependencies:
4444
- pymysql>=1.1.0
4545
- pyqt>=5.15.9
4646
- pyreadstat>=1.2.6
47-
- pytables>=3.9.2
47+
- pytables>=3.8.0
4848
- python-calamine>=0.1.7
4949
- pytz>=2023.4
5050
- pyxlsb>=1.0.10

ci/deps/actions-311-downstream_compat.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dependencies:
4545
- pymysql>=1.1.0
4646
- pyqt>=5.15.9
4747
- pyreadstat>=1.2.6
48-
- pytables>=3.9.2
48+
- pytables>=3.8.0
4949
- python-calamine>=0.1.7
5050
- pytz>=2023.4
5151
- pyxlsb>=1.0.10

ci/deps/actions-311.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ dependencies:
4444
- pyarrow>=10.0.1
4545
- pymysql>=1.1.0
4646
- pyreadstat>=1.2.6
47-
- pytables>=3.9.2
47+
- pytables>=3.8.0
4848
- python-calamine>=0.1.7
4949
- pytz>=2023.4
5050
- pyxlsb>=1.0.10

ci/deps/actions-312.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ dependencies:
4444
- pyarrow>=10.0.1
4545
- pymysql>=1.1.0
4646
- pyreadstat>=1.2.6
47-
- pytables>=3.9.2
47+
- pytables>=3.8.0
4848
- python-calamine>=0.1.7
4949
- pytz>=2023.4
5050
- pyxlsb>=1.0.10

ci/deps/circle-311-arm64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ dependencies:
4444
- pymysql>=1.1.0
4545
- pyqt>=5.15.9
4646
- pyreadstat>=1.2.6
47-
- pytables>=3.9.2
47+
- pytables>=3.8.0
4848
- python-calamine>=0.1.7
4949
- pytz>=2023.4
5050
- pyxlsb>=1.0.10

doc/source/getting_started/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ Installable with ``pip install "pandas[hdf5, parquet, feather, spss, excel]"``
304304
====================================================== ================== ================ ==========================================================
305305
Dependency Minimum Version pip extra Notes
306306
====================================================== ================== ================ ==========================================================
307-
`PyTables <https://github.com/PyTables/PyTables>`__ 3.9.2 hdf5 HDF5-based reading / writing
307+
`PyTables <https://github.com/PyTables/PyTables>`__ 3.8.0 hdf5 HDF5-based reading / writing
308308
`blosc <https://github.com/Blosc/c-blosc>`__ 1.21.6 hdf5 Compression for HDF5; only available on ``conda``
309309
`zlib <https://github.com/madler/zlib>`__ hdf5 Compression for HDF5
310310
`fastparquet <https://github.com/dask/fastparquet>`__ 2024.2.0 - Parquet reading / writing (pyarrow is default)

doc/source/whatsnew/v3.0.0.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,8 +323,6 @@ Optional libraries below the lowest tested version may still work, but are not c
323323
+------------------------+---------------------+
324324
| pyreadstat | 1.2.6 |
325325
+------------------------+---------------------+
326-
| PyTables | 3.9.2 |
327-
+------------------------+---------------------+
328326
| SciPy | 1.12.0 |
329327
+------------------------+---------------------+
330328
| SQLAlchemy | 2.0.26 |

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ dependencies:
4747
- pyarrow>=10.0.1
4848
- pymysql>=1.1.0
4949
- pyreadstat>=1.2.6
50-
- pytables>=3.9.2
50+
- pytables>=3.8.0
5151
- python-calamine>=0.1.7
5252
- pytz>=2023.4
5353
- pyxlsb>=1.0.10

pandas/compat/_optional.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"s3fs": "2024.2.0",
4949
"scipy": "1.12.0",
5050
"sqlalchemy": "2.0.25",
51-
"tables": "3.9.2",
51+
"tables": "3.8.0",
5252
"tabulate": "0.9.0",
5353
"xarray": "2024.1.1",
5454
"xlrd": "2.0.1",

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ parquet = ['pyarrow>=10.0.1']
7070
feather = ['pyarrow>=10.0.1']
7171
hdf5 = [# blosc only available on conda (https://github.com/Blosc/python-blosc/issues/297)
7272
#'blosc>=1.20.1',
73-
'tables>=3.9.2']
73+
'tables>=3.8.0']
7474
spss = ['pyreadstat>=1.2.6']
7575
postgresql = ['SQLAlchemy>=2.0.25', 'psycopg2>=2.9.6', 'adbc-driver-postgresql>=0.10.0']
7676
mysql = ['SQLAlchemy>=2.0.25', 'pymysql>=1.1.0']
@@ -114,7 +114,7 @@ all = ['adbc-driver-postgresql>=0.10.0',
114114
'scipy>=1.12.0',
115115
's3fs>=2024.2.0',
116116
'SQLAlchemy>=2.0.25',
117-
'tables>=3.9.2',
117+
'tables>=3.8.0',
118118
'tabulate>=0.9.0',
119119
'xarray>=2024.1.1',
120120
'xlrd>=2.0.1',

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ psycopg2-binary>=2.9.6
3636
pyarrow>=10.0.1
3737
pymysql>=1.1.0
3838
pyreadstat>=1.2.6
39-
tables>=3.9.2
39+
tables>=3.8.0
4040
python-calamine>=0.1.7
4141
pytz>=2023.4
4242
pyxlsb>=1.0.10

0 commit comments

Comments
 (0)