Skip to content

Commit 7631f65

Browse files
committed
-
1 parent 9e7a034 commit 7631f65

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

garlicsim/docs/intro/installation/developers/python-2.x.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ For :mod:`garlicsim`
3737

3838
* `distribute`_.
3939

40-
* on Windows only: `Python for Windows Extensions`_.
40+
* on Windows only: `Python for Windows Extensions`_. (Not required for Pypy users.)
4141

42-
For users of Python 2.5 only:
42+
For users of Python 2.5 only (not needed for modern Python versions):
4343

4444
* `Backport of the multiprocessing module`_.
4545
* `pyOpenSSL`_ is needed in order to use :class:`PiCloudCruncher`.

garlicsim/garlicsim/bootstrap/bootstrap.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,9 @@ def check_pywin32():
7979
except ImportError:
8080
raise MissingModule(
8181
"`pywin32` is required, but it's not currently installed on "
82-
"your system. Please install it according to the instructions "
83-
"here: http://sourceforge.net/projects/pywin32/files/pywin32/"
82+
"your system. Please downloading it from here: "
83+
"http://sourceforge.net/projects/pywin32/files/pywin32/ and "
84+
"install it."
8485
)
8586
else:
8687
return [win32api, win32process, win32com]

0 commit comments

Comments
 (0)