Skip to content

Commit

Permalink
change spark version in build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-goldstein committed Feb 15, 2023
1 parent 8ab9a26 commit 15d1aef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hail/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ REVISION := $(shell git rev-parse HEAD)
SHORT_REVISION := $(shell git rev-parse --short=12 HEAD)
BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
SCALA_VERSION ?= 2.12.13
SPARK_VERSION ?= 3.1.3
SPARK_VERSION ?= 3.3.0
HAIL_MAJOR_MINOR_VERSION := 0.2
HAIL_PATCH_VERSION := 109
HAIL_PIP_VERSION := $(HAIL_MAJOR_MINOR_VERSION).$(HAIL_PATCH_VERSION)
Expand Down
2 changes: 1 addition & 1 deletion hail/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ project.ext {
sparkVersion = System.getProperty("spark.version", "3.3.0")

if (sparkVersion != "3.3.0") {
project.logger.lifecycle("WARNING: Hail primarily tested with Spark 3.1.3, use other versions at your own risk.")
project.logger.lifecycle("WARNING: Hail primarily tested with Spark 3.3.0, use other versions at your own risk.")
}
scalaVersion = System.getProperty("scala.version", "2.12.13")
scalaMajorVersion = (scalaVersion =~ /^\d+.\d+/)[0]
Expand Down

0 comments on commit 15d1aef

Please sign in to comment.