File tree 4 files changed +15
-3
lines changed
4 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ language: python
2
2
python :
3
3
- 2.6
4
4
- 2.7
5
- - 3.2
6
5
- 3.3
7
6
- 3.4
8
7
- pypy
Original file line number Diff line number Diff line change 2
2
CHANGES
3
3
=======
4
4
5
+ ----
6
+ 18.5
7
+ ----
8
+
9
+ * In preparation for dropping support for Python 3.2, a warning is
10
+ now logged when pkg_resources is imported on Python 3.2 or earlier
11
+ Python 3 versions.
12
+
5
13
----
6
14
18.4
7
15
----
Original file line number Diff line number Diff line change 95
95
import packaging .specifiers
96
96
97
97
98
+ if (3 , 0 ) < sys .version_info < (3 , 3 ):
99
+ msg = (
100
+ "Support for Python 3.0-3.2 has been dropped. Future versions "
101
+ "will fail here."
102
+ )
103
+ warnings .warn (msg )
104
+
98
105
# declare some globals that will be defined later to
99
106
# satisfy the linters.
100
107
require = None
Original file line number Diff line number Diff line change @@ -140,8 +140,6 @@ def _gen_console_scripts():
140
140
Programming Language :: Python :: 2.6
141
141
Programming Language :: Python :: 2.7
142
142
Programming Language :: Python :: 3
143
- Programming Language :: Python :: 3.1
144
- Programming Language :: Python :: 3.2
145
143
Programming Language :: Python :: 3.3
146
144
Programming Language :: Python :: 3.4
147
145
Programming Language :: Python :: 3.5
You can’t perform that action at this time.
0 commit comments