Require Python 2.7, not 2.6

coolant-mod
Piotr Dziwinski 2015-05-12 21:50:49 +02:00
parent f11f9c7bc7
commit 68fd619311
2 changed files with 2 additions and 2 deletions

View File

@ -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!")

View File

@ -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.