From 1a368259ec5927196cc69b6a41da2bb5b48cc805 Mon Sep 17 00:00:00 2001 From: thomasdziedzic-calmwave <112598295+thomasdziedzic-calmwave@users.noreply.github.com> Date: Tue, 30 Jan 2024 15:34:39 -0600 Subject: [PATCH] relax ex_aws requirement This should allow for versions x.y where x >= 2 && y >= 3 --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 7d0ac17..4ae9ebb 100644 --- a/mix.exs +++ b/mix.exs @@ -28,7 +28,7 @@ defmodule ClusterEC2.Mixfile do defp deps do [ {:libcluster, "~> 2.0 or ~> 3.0"}, - {:ex_aws, "~> 2.3.2"}, + {:ex_aws, ">= 2.3.2"}, {:ex_aws_ec2, "~> 2.0"}, {:sweet_xml, "~> 0.6"}, {:hackney, "~> 1.8"},