From 9e2bd8b981c5d6891b7e0bf9418fd70aceff9602 Mon Sep 17 00:00:00 2001 From: Neil Date: Fri, 17 Apr 2020 15:29:20 +1000 Subject: Making dependencies now requires Python 3.6+. --- lexilla/src/DepGen.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lexilla/src/DepGen.py') diff --git a/lexilla/src/DepGen.py b/lexilla/src/DepGen.py index 08d80b28e..86cbb3bff 100644 --- a/lexilla/src/DepGen.py +++ b/lexilla/src/DepGen.py @@ -1,8 +1,8 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # DepGen.py - produce a make dependencies file for Scintilla # Copyright 2019 by Neil Hodgson # The License.txt file describes the conditions under which this software may be distributed. -# Requires Python 2.7 or later +# Requires Python 3.6 or later import os, sys @@ -10,7 +10,7 @@ sys.path.append(os.path.join("..", "..")) from scripts import Dependencies -topComment = "# Created by DepGen.py. To recreate, run 'python DepGen.py'.\n" +topComment = "# Created by DepGen.py. To recreate, run DepGen.py.\n" def Generate(): scintilla = os.path.join("..", "..") -- cgit v1.2.3