From 68fd619311d8c00402e150df71d861c300f8d957 Mon Sep 17 00:00:00 2001 From: Piotr Dziwinski Date: Tue, 12 May 2015 21:50:49 +0200 Subject: [PATCH] Require Python 2.7, not 2.6 --- CMakeLists.txt | 2 +- README.i18n.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9f28554f..49743a24 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 2.8) -find_package(PythonInterp 2.6) +find_package(PythonInterp 2.7) if(NOT PYTHONINTERP_FOUND) message(WARNING "Python not found, help and level files will NOT be translated!") diff --git a/README.i18n.md b/README.i18n.md index 89187ef5..3397037d 100644 --- a/README.i18n.md +++ b/README.i18n.md @@ -5,7 +5,7 @@ is managed through translation files (`*.pot` and `*.po`) as those generated by [gettext](https://www.gnu.org/software/gettext/). This is achieved by a set of Python scripts using [polib library](https://pypi.python.org/pypi/polib). -The only requirement for generating translations is standard Python 2.6+ installation +The only requirement for generating translations is standard Python 2.7+ installation (polib library is bundled with other script files). If you don't have Python installed, nothing is generated and only English files are installed.