From 86dd6a3c13448c5f1b4a899040ddfd44a6918f81 Mon Sep 17 00:00:00 2001 From: Luca Canali Date: Mon, 3 Jun 2019 16:38:31 +0200 Subject: [PATCH] preparing for 0.14 release --- build.sbt | 4 ++-- python/setup.py | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/build.sbt b/build.sbt index eb62811..3c64f2a 100644 --- a/build.sbt +++ b/build.sbt @@ -1,13 +1,13 @@ name := "spark-measure" -version := "0.14-SNAPSHOT" +version := "0.14" scalaVersion := "2.11.12" crossScalaVersions := Seq("2.11.12", "2.12.8") licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0")) -isSnapshot := true +isSnapshot := false spName := "spark-measure" sparkVersion := "2.4.3" diff --git a/python/setup.py b/python/setup.py index 7f03bdf..1311de4 100644 --- a/python/setup.py +++ b/python/setup.py @@ -5,13 +5,13 @@ description = 'Python API for sparkMeasure, a tool for performance troubleshooting of Apache Spark workloads' long_description = """SparkMeasure is a tool for performance troubleshooting of Apache Spark workloads. -It simplifies collection and analysis of Spark performance metrics. The bulk of sparkMeasure is written in Scala. -This package contains the Python API for sparkMeasureed intended to work in conjunction with PySpark, -for the command line or Jupyter notebook environments or as a tool to instrument Python code running Spark workloads. +It simplifies the collection and analysis of Spark performance metrics. The bulk of sparkMeasure is written in Scala. +This package contains the Python API for sparkMeasure and is intended to work in conjunction with PySpark. +Use from python command line or in Jupyter notebook environments, or as a tool to instrument Python code running Spark workloads. **[Link to sparkMeasure GitHub page and documentation](https://github.com/lucacanali/sparkMeasure)**""" setup(name='sparkmeasure', - version='0.13.4', + version='0.14.0', description=description, long_description=long_description, long_description_content_type="text/markdown",