Skip to content

Commit 16d6c91

Browse files
committed
Try not specifying java 6 for javac
1 parent fc5d314 commit 16d6c91

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def build_jar_from_sources(self, jar, sources):
220220

221221
javac_loc = find_javac_cmd()
222222
dirty_jar = False
223-
javac_command = [javac_loc, "-source", "6", "-target", "6"]
223+
javac_command = [javac_loc]
224224
for source in sources:
225225
javac_command.append(package_path(source))
226226
if needs_compilation(jar, source):

0 commit comments

Comments
 (0)