From bc7248da0974ab8a39ca36956ac6880029b85b00 Mon Sep 17 00:00:00 2001 From: John Sirois Date: Sun, 9 Aug 2015 21:29:10 -0600 Subject: [PATCH] Upgrade to pants 0.0.41 The release notes are here: https://pypi.python.org/pypi/pantsbuild.pants/0.0.41 Of note are fixes to python chroot caching which fixes behavior of python tasks when edits are made to a python_binary's python_library dependencies. Testing Done: CI went green here: https://travis-ci.org/twitter/commons/builds/74840320 Bugs closed: 406 Reviewed at https://rbcommons.com/s/twitter/r/2585/ --- pants | 2 +- pants.ini | 16 +++++++--------- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/pants b/pants index 572b3195a..16cdfd3fe 100755 --- a/pants +++ b/pants @@ -17,7 +17,7 @@ source build-support/python/libvirtualenv.sh -PANTS_VERSION=0.0.40 +PANTS_VERSION=0.0.41 PANTS_PACKAGES=( pantsbuild.pants==${PANTS_VERSION} diff --git a/pants.ini b/pants.ini index eb0a21bc5..c83d82389 100644 --- a/pants.ini +++ b/pants.ini @@ -117,15 +117,13 @@ config: %(buildroot)s/build-support/scalastyle/scalastyle_config.xml excludes: %(buildroot)s/build-support/scalastyle/excludes.txt -[compile.java] -partition_size_hint: 1000000000 -jvm_options: ['-Xmx2G'] -source: 6 -target: 6 - - -[compile.scala] -jvm_options: ['-Xmx2g', '-XX:MaxPermSize=256m', '-Dzinc.analysis.cache.limit=0'] +[jvm-platform] +platforms: { + 'java7': { + 'target': 7 + }, + } +default_platform: java7 [jvm.repl.scala]