diff --git a/README.rst b/README.rst index cea324e..603f64d 100644 --- a/README.rst +++ b/README.rst @@ -32,10 +32,10 @@ Currently, the toolchain requires a few tools for compilation. You will need: brew install autoconf automake libtool pkg-config brew link libtool -#. Install Cython (0.21):: +#. Install Cython (0.23):: # pip method if available (sudo might be needed.) - pip install cython==0.21 + pip install cython==0.23 Using the toolchain diff --git a/tools/templates/{{ cookiecutter.project_name }}-ios/main.m b/tools/templates/{{ cookiecutter.project_name }}-ios/main.m index 99f2325..a5f6c4d 100644 --- a/tools/templates/{{ cookiecutter.project_name }}-ios/main.m +++ b/tools/templates/{{ cookiecutter.project_name }}-ios/main.m @@ -121,8 +121,8 @@ void load_custom_builtin_importer() { "import sys, imp\n" \ "from os import environ\n" \ "from os.path import exists, join\n" \ - "# Fake redirection when we run the app without xcode\n" \ - "if 'CFLOG_FORCE_STDERR' not in environ:\n" \ + "# Fake redirection to supress console output\n" \ + "if environ.get('KIVY_NO_CONSOLE', '0') == '1':\n" \ " class fakestd(object):\n" \ " def write(self, *args, **kw): pass\n" \ " def flush(self, *args, **kw): pass\n" \