From e5053d1324ef4327c45f544f5e91283c3afd942c Mon Sep 17 00:00:00 2001 From: Pete Date: Tue, 28 May 2024 16:26:10 -0700 Subject: [PATCH] update dependency pins to fix requests/docker-py issue (#277) See https://github.com/docker/docker-py/issues/3256 --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7a1991..180da9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ use patch releases for compatibility fixes instead. - Added `Secret.author_id` field. - Added `Cluster.require_preemptible_tasks` field. +### Fixed + +- Updated dependencies list to work-around [docker-py#3256](https://github.com/docker/docker-py/issues/3256). + ## [v1.26.12](https://github.com/allenai/beaker-py/releases/tag/v1.26.12) - 2024-05-10 ### Added diff --git a/pyproject.toml b/pyproject.toml index 6721cca..293df78 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ dependencies = [ "pydantic>=1.8.2,<3.0", "rich>=12.3,<14.0", "PyYAML", - "docker>=5.0,<7.0", + "docker>=5.0,<8.0", ] [project.optional-dependencies]