From 4567cad31f472100ab69c10cdf7f7f71358489c9 Mon Sep 17 00:00:00 2001 From: Richard Larkin Date: Thu, 23 Jul 2020 13:18:52 +0200 Subject: [PATCH] :truck: Move cython requirement into requirements.txt (#531) Co-authored-by: richard --- README.md | 6 ------ requirements.txt | 1 + 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index 45ab712..c5a61b6 100644 --- a/README.md +++ b/README.md @@ -43,12 +43,6 @@ Additionally you would need few system dependencies and configuration. brew install autoconf automake libtool pkg-config brew link libtool -- Install Cython (0.29.17): - - # pip method if available (sudo might be needed.) - pip3 install Cython==0.29.17 - - ## Using the toolchain Any Python extensions or C/C++ library must be compiled: you need to have what diff --git a/requirements.txt b/requirements.txt index a38531f..f5c7916 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,3 +3,4 @@ Pillow>=6.1.0 requests>=2.13 cookiecutter==1.7.2 sh==1.12.14 +Cython==0.29.17 \ No newline at end of file