include:
- python: "2.7"
env: TOXENV=py27
- - python: "3.3"
- env: TOXENV=py33
- python: "3.4"
env: TOXENV=py34
- python: "3.5"
env: TOXENV=pypy
install:
- - travis_retry pip install --upgrade pip setuptools "tox <= 2.9.1" ppu
+ - travis_retry pip install --upgrade pip setuptools tox ppu
script:
- tox
git clone https://git.phdru.name/mimedecode.git
git clone git://git.phdru.name/mimedecode.git
- Requires: Python 2.7 or Python 3.3+, m_lib.defenc 1.0+.
+ Requires: Python 2.7 or Python 3.4+, m_lib.defenc 1.0+.
Tests require: tox, m_lib 3.1+.
Recommends: configured mailcap database.
+Version 3.0.0 (2018-??-??)
+
+ Drop support for Python 3.3.
+
Version 2.9.0 (2017-12-12)
Split mimedecode.py into a mimedecode library and a small script.
-mimedecode requires Python 2.7 or 3.3+.
+mimedecode requires Python 2.7 or 3.4+.
Installation script setup.py requires setuptools.
'Programming Language :: Python :: 2',
'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',
'mimedecode = mimedecode.__main__:main'
]
},
- python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*',
+ python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
install_requires=['m_lib.defenc>=1.0'],
tests_require=['m_lib>=3.1'],
)
[tox]
minversion = 2.0
-envlist = py{27,33,34,35,36,37},pypy
+envlist = py{27,34,35,36,37},pypy
[testenv]
basepython =
py27: {env:TOXPYTHON:python2.7}
- py33: {env:TOXPYTHON:python3.3}
py34: {env:TOXPYTHON:python3.4}
py35: {env:TOXPYTHON:python3.5}
py36: {env:TOXPYTHON:python3.6}