include:
- python: "2.7"
env: TOXENV=py27
- - python: "3.3"
- env: TOXENV=py33
- python: "3.4"
env: TOXENV=py34
- python: "3.5"
env: TOXENV=py34-flake8
install:
- - travis_retry pip install --upgrade pip setuptools "tox <= 2.9.1"
+ - travis_retry pip install --upgrade pip setuptools tox
script:
- tox
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "32"
PYTHON_HOME: "C:\\Python27"
- - TOXENV: "py33"
- PYTHON_VERSION: "3.3"
- PYTHON_ARCH: "64"
- PYTHON_HOME: "C:\\Python33-x64"
- TOXENV: "py36"
PYTHON_VERSION: "3.6"
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\""
+ - "pip install --upgrade tox"
- "pip --version"
# No build step - we don't have C extensions
-r requirements.txt
-pytest < 3.3
+pytest
pytest-cov
News
====
+Version 0.7.0 (2018-??-??)
+--------------------------
+
+* Drop support for Python 3.3.
+
Version 0.6.1 (2017-12-15)
--------------------------
'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',
'scripts/cmp.py', 'scripts/remove-old-files.py', 'scripts/rm.py',
'scripts/which.py',
],
- python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*',
+ python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
)
[tox]
minversion = 1.8
-envlist = py{27,33,34,35,36,37}, pypy, py{27,34}-flake8
+envlist = py{27,34,35,36,37}, pypy, 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}
{[testenv]commands}
{[general]commands}
-[testenv:py33]
-commands =
- {[testenv]commands}
- {[general]commands}
-
[testenv:py34]
commands =
{[testenv]commands}