[Python-modules-commits] [ipdb] 12/14: Drop python 3.2 support.

Andrey Rahmatullin wrar at moszumanska.debian.org
Thu Jan 18 17:50:22 UTC 2018


This is an automated email from the git hooks/post-receive script.

wrar pushed a commit to annotated tag 0.10.3
in repository ipdb.

commit fe1d47901a7cbd66048f3feb45d94f6eeb17a364
Author: Vincent Philippon <sindaewoh at gmail.com>
Date:   Thu Apr 20 17:50:29 2017 -0400

    Drop python 3.2 support.
    
    Python 3.2 is not supported by the pip and setuptools version required
    to use environment markers (i.e. 'python_version >= "2.7"').
---
 .travis.yml | 1 -
 HISTORY.txt | 4 +++-
 setup.py    | 2 +-
 3 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index b07fa28..46fc4ff 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,7 +2,6 @@ language: python
 python:
   - "2.6"
   - "2.7"
-  - "3.2"
   - "3.3"
   - "3.4"
   - "3.5"
diff --git a/HISTORY.txt b/HISTORY.txt
index 98e1c53..c298e5a 100644
--- a/HISTORY.txt
+++ b/HISTORY.txt
@@ -4,9 +4,11 @@ Changelog
 0.10.3 (unreleased)
 -------------------
 
-- For users using python 2.6 or 3.0 to 3.2, do not install IPython >= 2.0.0.
+- For users using python 2.6, do not install IPython >= 2.0.0.
   And for users using python 2.7, do not install IPython >= 6.0.0.
   [vphilippon]
+- Drop support for python 3.2.
+  [vphilippon]
 - Command line usage consistent with pdb - Add argument commands
   [zvodd]
 
diff --git a/setup.py b/setup.py
index 22f4304..4fd0642 100644
--- a/setup.py
+++ b/setup.py
@@ -51,7 +51,7 @@ setup(name='ipdb',
       extras_require={
           ':python_version == "2.6"': ['ipython >= 0.10.2, < 2.0.0'],
           ':python_version == "2.7"': ['ipython >= 0.10.2, < 6.0.0'],
-          ':python_version >= "3.0" and python_version < "3.3"': ['ipython >= 0.10.2, < 2.0.0'],
+          # No support for python 3.0, 3.1, 3.2.
           ':python_version >= "3.3"': ['ipython >= 0.10.2'],
       },
       entry_points={

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/ipdb.git



More information about the Python-modules-commits mailing list