File tree 6 files changed +12
-7
lines changed
6 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ language: python
3
3
# cache package wheels (1 cache per python version)
4
4
cache : pip
5
5
python :
6
- - " 3.3"
7
6
- " 3.4"
8
7
# Specifically request 3.5.1 because we need to be compatible with that.
9
8
- " 3.5.1"
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ See 'Development status' below.
61
61
Requirements
62
62
------------
63
63
64
- You need Python 3.3 or later to run mypy. You can have multiple Python
64
+ You need Python 3.4 or later to run mypy. You can have multiple Python
65
65
versions (2.x and 3.x) installed on the same system without problems.
66
66
67
67
In Ubuntu, Mint and Debian you can install Python 3 like this:
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Can't install mypy using pip
14
14
15
15
If installation fails, you've probably hit one of these issues:
16
16
17
- * Mypy needs Python 3.3 or later to run.
17
+ * Mypy needs Python 3.4 or later to run.
18
18
* You may have to run pip like this:
19
19
``python3 -m pip install mypy ``.
20
20
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Getting started
6
6
Installation
7
7
************
8
8
9
- Mypy requires Python 3.3 or later. Once you've `installed Python 3 <https://www.python.org/downloads/ >`_,
9
+ Mypy requires Python 3.4 or later. Once you've `installed Python 3 <https://www.python.org/downloads/ >`_,
10
10
you can install mypy with:
11
11
12
12
.. code-block :: text
Original file line number Diff line number Diff line change @@ -3,6 +3,13 @@ Revision history
3
3
4
4
List of major changes:
5
5
6
+ - Upcoming
7
+ * Publish ``mypy `` version 0.550 on PyPI.
8
+
9
+ * Running mypy now requires Python 3.4 or higher.
10
+ However Python 3.3 is still valid for the target
11
+ of the analysis (i.e. the ``--python-version `` flag).
12
+
6
13
- October 2017
7
14
* Publish ``mypy `` version 0.540 on PyPI.
8
15
Original file line number Diff line number Diff line change 5
5
import os .path
6
6
import sys
7
7
8
- if sys .version_info < (3 , 2 , 0 ):
9
- sys .stderr .write ("ERROR: You need Python 3.2 or later to use mypy.\n " )
8
+ if sys .version_info < (3 , 4 , 0 ):
9
+ sys .stderr .write ("ERROR: You need Python 3.4 or later to use mypy.\n " )
10
10
exit (1 )
11
11
12
12
# This requires setuptools when building; setuptools is not needed
@@ -84,7 +84,6 @@ def run(self):
84
84
'License :: OSI Approved :: MIT License' ,
85
85
'Operating System :: POSIX' ,
86
86
'Programming Language :: Python :: 3' ,
87
- 'Programming Language :: Python :: 3.3' ,
88
87
'Programming Language :: Python :: 3.4' ,
89
88
'Programming Language :: Python :: 3.5' ,
90
89
'Programming Language :: Python :: 3.6' ,
You can’t perform that action at this time.
0 commit comments