From e630948ed6ca50970ab276daf456e9f1b3470954 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 18:58:23 +0000 Subject: [PATCH] Update tables requirement from <=3.9.1 to <=3.9.2 Updates the requirements on [tables](https://github.com/PyTables/PyTables) to permit the latest version. - [Release notes](https://github.com/PyTables/PyTables/releases) - [Changelog](https://github.com/PyTables/PyTables/blob/master/RELEASE_NOTES.rst) - [Commits](https://github.com/PyTables/PyTables/compare/v.2.0-pro...v3.9.2) --- updated-dependencies: - dependency-name: tables dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a4228c0..0176bbb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ dependencies = ["numpy>=1.21.2", "scipy"] dynamic = ["version", "description"] [project.optional-dependencies] -test = ["h5py", "tables < 3.8; python_version < '3.9'", "tables <= 3.9.1", "pandas", "uproot", "pytest-cov"] +test = ["h5py", "tables < 3.8; python_version < '3.9'", "tables <= 3.9.2", "pandas", "uproot", "pytest-cov"] docs = ["sphinx","sphinx-rtd-theme","pandas"] dev = ["pytest","pre-commit","reuse","black","ruff","pylint","mypy"]