|
13 | 13 | # # |
14 | 14 | if sys.version_info[:2] <= (2, 6): |
15 | 15 | raise Exception( |
16 | | - "You're using Python <= 2.5, but this package requires either Python " |
17 | | - "2.6/2.7, or 3.3 or above, so you can't use it unless you upgrade " |
18 | | - "your Python version." |
| 16 | + "You're using Python <= 2.6, but this package requires either Python " |
| 17 | + "2.7, or 3.3 or above, so you can't use it unless you upgrade your " |
| 18 | + "Python version." |
19 | 19 | ) |
20 | 20 | if sys.version_info[0] == 3 and sys.version_info[1] <= 2: |
21 | 21 | raise Exception( |
22 | 22 | "You're using Python <= 3.2, but this package requires either Python " |
23 | | - "3.3 or above, or Python 2.6/2.7, so you can't use it unless you " |
24 | | - "upgrade your Python version." |
| 23 | + "3.3 or above, or Python 2.7, so you can't use it unless you upgrade " |
| 24 | + "your Python version." |
25 | 25 | ) |
26 | 26 | # # |
27 | 27 | ### Finished confirming correct Python version. ############################### |
@@ -149,7 +149,6 @@ def get_packages(): |
149 | 149 | 'License :: OSI Approved :: MIT License', |
150 | 150 | 'Operating System :: OS Independent', |
151 | 151 | 'Programming Language :: Python', |
152 | | - 'Programming Language :: Python :: 2.6', |
153 | 152 | 'Programming Language :: Python :: 2.7', |
154 | 153 | 'Programming Language :: Python :: 3.3', |
155 | 154 | 'Programming Language :: Python :: 3.4', |
|
0 commit comments