From 95876ad746341682c31657f404fefe0d52f147b8 Mon Sep 17 00:00:00 2001 From: StrikerRUS Date: Thu, 17 Jan 2019 14:55:26 +0300 Subject: [PATCH] bump xcode version in docs --- python-package/README.rst | 2 +- python-package/lightgbm/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python-package/README.rst b/python-package/README.rst index 9341a34aa3e2..c007b381a9de 100644 --- a/python-package/README.rst +++ b/python-package/README.rst @@ -22,7 +22,7 @@ For **Linux** users, **glibc** >= 2.14 is required. For **macOS** users: -- Starting from version 2.2.1, the library file in distribution wheels is built by the **Apple Clang** (Xcode_8.3.1) compiler. This means that you don't need to install the **gcc** compiler anymore. Instead of that you need to install the **OpenMP** library, which is required for running LightGBM on the system with the **Apple Clang** compiler. You can install the **OpenMP** library by the following command: ``brew install libomp``. +- Starting from version 2.2.1, the library file in distribution wheels is built by the **Apple Clang** (Xcode_8.3.3) compiler. This means that you don't need to install the **gcc** compiler anymore. Instead of that you need to install the **OpenMP** library, which is required for running LightGBM on the system with the **Apple Clang** compiler. You can install the **OpenMP** library by the following command: ``brew install libomp``. - For version smaller than 2.2.1 and not smaller than 2.1.2, **gcc-8** with **OpenMP** support must be installed first. Refer to `Installation Guide `__ for installation of **gcc-8** with **OpenMP** support. diff --git a/python-package/lightgbm/__init__.py b/python-package/lightgbm/__init__.py index edd60b6d8539..356002e80b55 100644 --- a/python-package/lightgbm/__init__.py +++ b/python-package/lightgbm/__init__.py @@ -38,7 +38,7 @@ # REMOVEME: remove warning after 2.3.0 version release if system() == 'Darwin': warnings.warn("Starting from version 2.2.1, the library file in distribution wheels for macOS " - "is built by the Apple Clang (Xcode_8.3.1) compiler.\n" + "is built by the Apple Clang (Xcode_8.3.3) compiler.\n" "This means that in case of installing LightGBM from PyPI via the ``pip install lightgbm`` command, " "you don't need to install the gcc compiler anymore.\n" "Instead of that, you need to install the OpenMP library, "