From d19178519453ef325a755d645e6775daf4cc75ef Mon Sep 17 00:00:00 2001 From: Pawel Miech Date: Fri, 17 Jun 2016 09:21:58 +0200 Subject: [PATCH 1/3] [docs] add note about windows + python3 --- docs/news.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/news.rst b/docs/news.rst index cbcd4d613..ac87b449d 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -72,7 +72,7 @@ features are still missing (and some may never be ported). Almost all builtin extensions/middlewares are expected to work. However, we are aware of some limitations in Python 3: -- Scrapy has not been tested on Windows with Python 3 +- Scrapy does not work on Windows with Python 3 - Sending emails is not supported - FTP download handler is not supported - Telnet console is not supported From adb837d7b7a25aa747360fd849e2a7078ea13187 Mon Sep 17 00:00:00 2001 From: Pawel Miech Date: Fri, 17 Jun 2016 13:28:51 +0200 Subject: [PATCH 2/3] [docs] warnings about windows + python 3 in faq and install --- docs/faq.rst | 2 +- docs/intro/install.rst | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/faq.rst b/docs/faq.rst index 82e1f3422..35551d3cc 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -71,7 +71,7 @@ What Python versions does Scrapy support? Scrapy is supported under Python 2.7 and Python 3.3+. Python 2.6 support was dropped starting at Scrapy 0.20. -Python 3 support was added in Scrapy 1.1. +Python 3 support was added in Scrapy 1.1. Python 3 is not yet supported on Windows. Did Scrapy "steal" X from Django? --------------------------------- diff --git a/docs/intro/install.rst b/docs/intro/install.rst index 25520b4b9..16b8761c2 100644 --- a/docs/intro/install.rst +++ b/docs/intro/install.rst @@ -11,7 +11,7 @@ Installing Scrapy The installation steps assume that you have the following things installed: -* `Python`_ 2.7 +* `Python`_ 2.7 or above 3.3 * `pip`_ and `setuptools`_ Python packages. Nowadays `pip`_ requires and installs `setuptools`_ if not installed. Python 2.7.9 and later include @@ -85,6 +85,10 @@ Windows pip install Scrapy +.. note:: + Python 3 is not supported on Windows. Installation of Scrapy on Windows + with Python 3 will fail. + Ubuntu 9.10 or above -------------------- From dc8db8b35e255ee7e95bb08220dc35cfeff16caf Mon Sep 17 00:00:00 2001 From: Pawel Miech Date: Mon, 4 Jul 2016 16:35:59 +0200 Subject: [PATCH 3/3] docs on Scrapy on Windows + Python 3 --- docs/faq.rst | 5 ++++- docs/intro/install.rst | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/faq.rst b/docs/faq.rst index 35551d3cc..415331515 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -71,7 +71,10 @@ What Python versions does Scrapy support? Scrapy is supported under Python 2.7 and Python 3.3+. Python 2.6 support was dropped starting at Scrapy 0.20. -Python 3 support was added in Scrapy 1.1. Python 3 is not yet supported on Windows. +Python 3 support was added in Scrapy 1.1. + +.. note:: + Python 3 is not yet supported on Windows. Did Scrapy "steal" X from Django? --------------------------------- diff --git a/docs/intro/install.rst b/docs/intro/install.rst index 16b8761c2..3364c3b31 100644 --- a/docs/intro/install.rst +++ b/docs/intro/install.rst @@ -86,8 +86,8 @@ Windows pip install Scrapy .. note:: - Python 3 is not supported on Windows. Installation of Scrapy on Windows - with Python 3 will fail. + Python 3 is not supported on Windows. This is because Scrapy core requirement Twisted does not support + Python 3 on Windows. Ubuntu 9.10 or above --------------------