summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo <hugovk@users.noreply.github.com>2017-12-28 00:17:29 +0200
committerHugo <hugovk@users.noreply.github.com>2017-12-28 00:17:29 +0200
commit66f51babed216adbc4f11aaa715ca355cf88a867 (patch)
tree62fffd63ed4f7afbb97abbb563c21174cf905549
parent1539c8a89119f37890f46586d705d5a90cc98ae6 (diff)
downloadbabel-66f51babed216adbc4f11aaa715ca355cf88a867.tar.gz
Drop EOL Python 2.6 and 3.3
-rw-r--r--.travis.yml8
-rw-r--r--docs/dev.rst3
-rwxr-xr-xsetup.py3
-rw-r--r--tox.ini2
4 files changed, 3 insertions, 13 deletions
diff --git a/.travis.yml b/.travis.yml
index f9469c9..b819e3e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -12,12 +12,6 @@ cache:
matrix:
include:
- os: linux
- python: 2.6
- - os: linux
- python: 2.6
- env:
- - CDECIMAL=m3-cdecimal
- - os: linux
python: 2.7
- os: linux
python: 2.7
@@ -28,8 +22,6 @@ matrix:
- os: linux
python: pypy3
- os: linux
- python: 3.3
- - os: linux
python: 3.4
- os: linux
python: 3.5
diff --git a/docs/dev.rst b/docs/dev.rst
index afc8b12..0ff033f 100644
--- a/docs/dev.rst
+++ b/docs/dev.rst
@@ -30,9 +30,8 @@ Python Versions
At the moment the following Python versions should be supported:
-* Python 2.6
* Python 2.7
-* Python 3.3 and up
+* Python 3.4 and up
* PyPy tracking 2.7 and 3.2 and up
While PyPy does not currently support 3.3, it does support traditional
diff --git a/setup.py b/setup.py
index 684c387..8e268e1 100755
--- a/setup.py
+++ b/setup.py
@@ -45,10 +45,8 @@ setup(
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
- 'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
@@ -56,6 +54,7 @@ setup(
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
],
+ python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
packages=['babel', 'babel.messages', 'babel.localtime'],
include_package_data=True,
install_requires=[
diff --git a/tox.ini b/tox.ini
index b71dec7..ab73346 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py26, py27, pypy, py33, py34, py35, py36, pypy3, py26-cdecimal, py27-cdecimal
+envlist = py27, pypy, py33, py34, py35, py36, pypy3, py27-cdecimal
[testenv]
deps =