From 93d7c6ff50f595d4217f98bf7f3f8f1ff0ad552d Mon Sep 17 00:00:00 2001 From: Postmodern Date: Mon, 17 Jan 2022 02:11:04 -0800 Subject: [PATCH] Restrict combinatorics to ~> 0.4 I'm planning on working on combinatorics 1.0.0, which will break compatibility with the 0.x.y API. Restricting combinatorics to `~> 0.4` will restrict combinatorics to the 0.x.y version family. --- radiation.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radiation.gemspec b/radiation.gemspec index ee5b6e7..f7d4b79 100644 --- a/radiation.gemspec +++ b/radiation.gemspec @@ -20,7 +20,7 @@ Gem::Specification.new do |spec| spec.add_dependency "plusminus" spec.add_dependency "open-uri-cached" - spec.add_dependency "combinatorics" + spec.add_dependency "combinatorics", "~> 0.4" spec.add_dependency "linefit" spec.add_dependency "xml-simple" spec.add_dependency "thor"