Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

Commit

Permalink
version upgrade: move to java 1.9.63 ; python 1.9.69 (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmbethe09 authored Apr 23, 2018
1 parent 09c1f23 commit 44caf2d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions appengine/sdk.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"""Language agnostic utility functions for use in the other .bzl files.
"""

load(":variables.bzl", "SDK_URL_PREFIX")
load(":variables.bzl", "APPENGINE_VERSION", "SDK_URL_PREFIX")

def _find_locally_or_download_impl(repository_ctx):
lang = repository_ctx.attr.lang
Expand Down Expand Up @@ -52,7 +52,8 @@ find_locally_or_download = repository_rule(
),
"version": attr.string(
mandatory = True,
doc = "The SDK version to download. Usually of the form 1.9.57.",
doc = "The SDK version to download. Usually of the form %s."
% APPENGINE_VERSION,
),
"strip_prefix_pattern": attr.string(
default = "google_appengine",
Expand Down
9 changes: 5 additions & 4 deletions appengine/variables.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
"""
# Not all languages are released for every SDK version. Whenever possible, set
# ${LANG}_SDK_VERSION = APPENGINE_VERSION.
APPENGINE_VERSION = "1.9.57"
APPENGINE_VERSION = "1.9.63"

SDK_URL_PREFIX = "https://storage.googleapis.com/appengine-sdks/featured"

JAVA_SDK_SHA256 = "63f89be498d1e7462c03fe2b66d7773a9e5dd04ffb71e3b59a5fa74a7b810997"
JAVA_SDK_SHA256 = "477eb0bdec2c98fa68e4d0d9cbd1329c140e907fa64be2c3c9c065373369e93b"

JAVA_SDK_VERSION = APPENGINE_VERSION

PY_SDK_SHA256 = "d5c4fad8afa2ce9005481575c01558248a0fbe0b4554c6de060e925899cfbf66"
PY_SDK_SHA256 = "76b90b3a780c6dfd2e5dcd9d79ec8be2ab7c1146fd445e472f18e3aeb90fabc5"

PY_SDK_VERSION = APPENGINE_VERSION
# Note: Python ahead of Java
PY_SDK_VERSION = "1.9.69"

0 comments on commit 44caf2d

Please sign in to comment.