aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/DepGen.py
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2020-04-17 15:29:20 +1000
committerNeil <nyamatongwe@gmail.com>2020-04-17 15:29:20 +1000
commit9e2bd8b981c5d6891b7e0bf9418fd70aceff9602 (patch)
tree5c46fd80e54c2fe5bfa1f5e006cfa065850a0811 /win32/DepGen.py
parent8c45e7db05d76de60d214148a69b5ba927b704a1 (diff)
downloadscintilla-mirror-9e2bd8b981c5d6891b7e0bf9418fd70aceff9602.tar.gz
Making dependencies now requires Python 3.6+.
Diffstat (limited to 'win32/DepGen.py')
-rw-r--r--win32/DepGen.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/win32/DepGen.py b/win32/DepGen.py
index 6196720e2..563cae2a1 100644
--- a/win32/DepGen.py
+++ b/win32/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 <neilh@scintilla.org>
# 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 sys
@@ -10,7 +10,7 @@ sys.path.append("..")
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():
sources = ["../src/*.cxx", "../lexlib/*.cxx", "../lexers/*.cxx"]