From 9e04637b0f914ac714cb354a52aa10c96694f4a7 Mon Sep 17 00:00:00 2001 From: Sebastian Pietras <01133337@pw.edu.pl> Date: Mon, 11 Jan 2021 22:07:15 +0100 Subject: [PATCH] Updated version --- README.md | 6 ++++-- example/WORKSPACE | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e6c5103..780f390 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,8 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_conda", - sha256 = "6c05d098ea82c172cd83d99c5fc892a488ffbf5f64ab3b2a32ab642c2a264e31", - url = "https://github.com/spietras/rules_conda/releases/download/0.0.4/rules_conda-0.0.4.zip" + sha256 = "8298379474beb05f815afc33a42eb1732f8ebdab3aa639569473eae75e6e072b", + url = "https://github.com/spietras/rules_conda/releases/download/0.0.5/rules_conda-0.0.5.zip" ) load("@rules_conda//:defs.bzl", "load_conda", "conda_create", "register_toolchain") @@ -34,6 +34,7 @@ conda_create( name = "py2_env", environment = "@//third_party/conda:py2_environment.yml", # label pointing to environment.yml file quiet = False, + clean = True, timeout = 600 # each execute action can take up to 600 seconds ) @@ -42,6 +43,7 @@ conda_create( name = "py3_env", environment = "@//third_party/conda:py3_environment.yml", # label pointing to environment.yml file quiet = False, + clean = True, timeout = 600 ) diff --git a/example/WORKSPACE b/example/WORKSPACE index 2ac5947..de8bb3c 100644 --- a/example/WORKSPACE +++ b/example/WORKSPACE @@ -25,8 +25,8 @@ http_archive( #) RULES_CONDA_NAME = "rules_conda" -RULES_CONDA_TAG = "0.0.4" -RULES_CONDA_SHA = "6c05d098ea82c172cd83d99c5fc892a488ffbf5f64ab3b2a32ab642c2a264e31" +RULES_CONDA_TAG = "0.0.5" +RULES_CONDA_SHA = "8298379474beb05f815afc33a42eb1732f8ebdab3aa639569473eae75e6e072b" RULES_CONDA_REPO = "spietras" RULES_CONDA_ARCHIVE = "zip" RULES_CONDA_URL = "https://github.com/{repo}/{name}/releases/download/{tag}/{name}-{tag}.{archive}".format(repo=RULES_CONDA_REPO, name=RULES_CONDA_NAME, tag=RULES_CONDA_TAG, archive=RULES_CONDA_ARCHIVE) @@ -51,6 +51,7 @@ conda_create( name = "py2_env", environment = "@//third_party/conda:py2_environment.yml", # label pointing to environment.yml file quiet = False, + clean = True, timeout = 600 # each execute action can take up to 600 seconds ) @@ -59,6 +60,7 @@ conda_create( name = "py3_env", environment = "@//third_party/conda:py3_environment.yml", # label pointing to environment.yml file quiet = False, + clean = True, timeout = 600 )