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
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "64"
PYTHON_HOME: "C:\\Python27-x64"
- - TOXENV: "py33"
- PYTHON_VERSION: "3.3"
- PYTHON_ARCH: "32"
- PYTHON_HOME: "C:\\Python33"
- - TOXENV: "py33"
- PYTHON_VERSION: "3.3"
- PYTHON_ARCH: "64"
- PYTHON_HOME: "C:\\Python33-x64"
- TOXENV: "py34"
PYTHON_VERSION: "3.4"
PYTHON_ARCH: "32"
- "python --version"
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
- "python -m pip install --upgrade pip setuptools"
- - "pip install --upgrade \"tox <= 2.9.1\" ppu"
+ - "pip install --upgrade tox ppu"
- "pip --version"
# No build step - we don't have C extensions
m_lib.defenc >= 1.0
m_lib >= 2.0; python_version >= '2.7' and python_version < '3.0'
-m_lib >= 3.0; python_version >= '3.3'
+m_lib >= 3.0; python_version >= '3.4'
'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',
packages=['{project}'],
package_data={'{project}': []},
scripts=[],
- python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*',
+ python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
requires=[],
)
[tox]
minversion = 2.0
toxworkdir={homedir}/.tox/{project}
-envlist = {py27,py33,py34,py35,py36},{py27,py34}-flake8
+envlist = py27,py3{4,5,6},py{27,34}-flake8
# Base test environment settings
[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}
commands =
{[general]commands}
-[testenv:py33]
-commands =
- {[general]commands}
-
[testenv:py34]
commands =
{[general]commands}