Skip to content

Commit 5c5ab05

Browse files
authored
Change ≥ to >= in Py2 code
Suggesting that due to locale differences, we probably should not include the symbol "≥" in the raw string to display to Python 2 users; have instead substituted >= in two places. (And now I remember WHY we moved to Py3 only...)
1 parent 34a4c3f commit 5c5ab05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_practicalities/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ if sys.version_info < (3,):
229229
Unfortunately Frobulator 6.0 and above are not compatible with Python 2
230230
anymore, and you still ended up with this version installed on your system.
231231
That's a bummer; sorry about that. It should not have happened. Make sure you
232-
have pip 9.0 to avoid this kind of issues, as well as setuptools 24.2:
232+
have pip >= 9.0 to avoid this kind of issues, as well as setuptools >= 24.2:
233233
234234
$ pip install pip setuptools --upgrade
235235

0 commit comments

Comments
 (0)