From ea4c009c59e7d02cd498587de058f4a29b6d5c45 Mon Sep 17 00:00:00 2001 From: Chris Parsons Date: Tue, 28 May 2019 16:00:11 -0400 Subject: [PATCH] Make sets.bzl point to new_sets.bzl instead of old_sets.bzl new_sets.bzl and old_sets.bzl should be removed in the following skylib release. Fixes #155. --- lib/sets.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sets.bzl b/lib/sets.bzl index 15ffc30..448c498 100644 --- a/lib/sets.bzl +++ b/lib/sets.bzl @@ -14,6 +14,6 @@ """Skylib module reexporting deprecated set algorithms.""" -load(":old_sets.bzl", _sets = "sets") +load(":new_sets.bzl", _sets = "sets") sets = _sets