From 5cc800a1fa294d1a184f4ad4635843612ca22700 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Sep 2023 00:22:22 +0000 Subject: [PATCH 1/2] Update pyairtable requirement from <2 to <3 Updates the requirements on [pyairtable](https://github.com/gtalarico/pyairtable) to permit the latest version. - [Commits](https://github.com/gtalarico/pyairtable/compare/0.2.0.dev1...2.1.0.post1) --- updated-dependencies: - dependency-name: pyairtable 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 9eb07620b..42bef3831 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,7 @@ validators = [ ] h5py = "^3.7.0" # For compatibility with isaura loguru = "^0.6.0" # For compatibility with isaura -pyairtable = "<2" +pyairtable = "<3" PyYAML = "^6.0.1" dockerfile-parse = "^2.0.1" tqdm = "^4.66.1" From 31c46a66fe2beca812c84845ac5beca079112fa8 Mon Sep 17 00:00:00 2001 From: dhanshreea Date: Thu, 28 Sep 2023 19:17:28 +0530 Subject: [PATCH 2/2] Fix pyairtable dependency relative to python version --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 42bef3831..861962889 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,10 @@ validators = [ ] h5py = "^3.7.0" # For compatibility with isaura loguru = "^0.6.0" # For compatibility with isaura -pyairtable = "<3" +pyairtable = [ + {version="<2", python="3.7.*"}, + {version="<3", python=">=3.8"}, +] PyYAML = "^6.0.1" dockerfile-parse = "^2.0.1" tqdm = "^4.66.1"