From 82323ce031afd80f136d19317926ae2923217ca1 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Sun, 30 Jun 2024 19:01:34 +0300
Subject: [PATCH] Remove the docker-compose depenency.

It's out of date and not useful. Rely on externally installed version
instead.
---
 README.md | 6 ++++++
 setup.py  | 1 -
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 78ef6c1..ac503e0 100644
--- a/README.md
+++ b/README.md
@@ -42,6 +42,12 @@ Check Ansible playbooks for syntax errors.
 ### `docker-compose`
 
 Validate the Docker Compose file using docker-compose config.
+Requires an install `docker-compose`.
+
+With previous versions of this repo, the `docker-compose` version from PyPI was
+installed as a dependency. However, at the time of writing, the package hasn't
+been updated in over 3 years. If you wish to still use the 1.x version from
+PyPI, add it in the `additional_dependencies` section of the hook.
 
 ### `terraform-fmt`
 
diff --git a/setup.py b/setup.py
index de3c388..e1443c5 100644
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,6 @@ setup(
     version=VERSION,
     install_requires=[
         "ansible>=4",
-        "docker-compose>=1.20",
         "poetry",
     ],
     entry_points={
-- 
GitLab