Skip to content

Commit

Permalink
Warn users Python 3.5+ doesn't work on Windows XP
Browse files Browse the repository at this point in the history
Fixes #848
  • Loading branch information
berkerpeksag committed Oct 13, 2017
1 parent 20ed0c9 commit fd32294
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions templates/downloads/os_list.html
Expand Up @@ -38,6 +38,9 @@ <h2>Stable Releases</h2>
{% for r in releases %}
<li>
<a href="{{ r.get_absolute_url }}">{{ r.name }} - {{ r.release_date|date }}</a>
{% if os.slug == 'windows' and r.name >= 'Python 3.5' %}
<p><strong>Note that {{ r.name }} <em>cannot</em> be used on Windows XP or earlier.</strong></p>
{% endif %}
<ul>
{% for f in r.files.all %}
<li>Download <a href="{{ f.url }}">{{ f.name }}</a></li>
Expand Down

0 comments on commit fd32294

Please sign in to comment.