diff --git a/Ghidra/Features/Python/Module.manifest b/Ghidra/Features/Python/Module.manifest index cc26ac566d..9fa665bcef 100644 --- a/Ghidra/Features/Python/Module.manifest +++ b/Ghidra/Features/Python/Module.manifest @@ -1,4 +1,4 @@ -DATA SEARCH IGNORE DIR: jython-2.7.0 +DATA SEARCH IGNORE DIR: jython-2.7.2 EXCLUDE FROM GHIDRA JAR: true -MODULE FILE LICENSE: lib/jython-standalone-2.7.1.jar Apache License 2.0 +MODULE FILE LICENSE: lib/jython-standalone-2.7.2.jar Jython License diff --git a/Ghidra/Features/Python/build.gradle b/Ghidra/Features/Python/build.gradle index ffe7eaf0dd..def510cae4 100644 --- a/Ghidra/Features/Python/build.gradle +++ b/Ghidra/Features/Python/build.gradle @@ -8,8 +8,8 @@ apply plugin: 'eclipse' eclipse.project.name = 'Features Python' -def JYTHON = "org.python:jython-standalone:2.7.1" -def JYTHON_DIR = "jython-2.7.1" +def JYTHON = "org.python:jython-standalone:2.7.2" +def JYTHON_DIR = "jython-2.7.2" configurations { jython diff --git a/Ghidra/Features/Python/src/main/java/ghidra/python/PythonUtils.java b/Ghidra/Features/Python/src/main/java/ghidra/python/PythonUtils.java index c0f9fbd4ab..a1c5a565e1 100644 --- a/Ghidra/Features/Python/src/main/java/ghidra/python/PythonUtils.java +++ b/Ghidra/Features/Python/src/main/java/ghidra/python/PythonUtils.java @@ -27,7 +27,7 @@ import utilities.util.FileUtilities; */ public class PythonUtils { - public static final String PYTHON_NAME = "jython-2.7.1"; + public static final String PYTHON_NAME = "jython-2.7.2"; public static final String PYTHON_CACHEDIR = "jython_cachedir"; public static final String PYTHON_SRC = "python-src";