Skip to content

Commit 3354b88

Browse files
Updated supported Python versions (#5)
* updated tox.ini with latest python versions * Updated setup.py and .travis.yml with latest python versions * Updated .travis.yml with new matrix format * Update CHANGES.rst
1 parent ef4c8c6 commit 3354b88

File tree

4 files changed

+21
-15
lines changed

4 files changed

+21
-15
lines changed

.travis.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
language: python
22

3-
python: 3.5
3+
python: 3.8
44
cache: pip
5-
env:
6-
- TOXENV=py27
7-
- TOXENV=py34
8-
- TOXENV=py35
9-
- TOXENV=pep8
10-
- TOXENV=coverage
5+
matrix:
6+
include:
7+
- python: "3.6"
8+
env: TOXENV=py36
9+
- python: "3.7"
10+
env: TOXENV=py37
11+
- python: "3.8"
12+
env: TOXENV=py38
13+
- python: "3.8"
14+
env: TOXENV=pep8
15+
- python: "3.8"
16+
env: TOXENV=coverage
1117
before_install:
1218
- pip install --upgrade pip setuptools
1319
install:

CHANGES.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ CHANGES
55
================
66

77
- Updated test suite to work with Morepath 0.15.
8-
9-
- Make Python 3.5 the default testing environment.
8+
- Make Python 3.8 the default testing environment
9+
- Drop support for Python versions < 3.6
1010

1111

1212
0.1 (2016-07-01)

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@
4848
'Environment :: Web Environment',
4949
'License :: OSI Approved :: BSD License',
5050
'Topic :: Internet :: WWW/HTTP :: WSGI',
51-
'Programming Language :: Python :: 2.7',
52-
'Programming Language :: Python :: 3.4',
53-
'Programming Language :: Python :: 3.5',
51+
'Programming Language :: Python :: 3.6',
52+
'Programming Language :: Python :: 3.7',
53+
'Programming Language :: Python :: 3.8',
5454
]
5555
)

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[tox]
2-
envlist = py27,py34,py35,pep8,coverage
2+
envlist = py36,py37,py38,pep8,coverage
33

44
[testenv]
55
deps = -e{toxinidir}[test]
66
commands = py.test -v {posargs}
77

88
[testenv:pep8]
9-
basepython = python3.5
9+
basepython = python3.8
1010
deps = flake8
1111
commands = flake8 morepath_sqlalchemy setup.py
1212

1313
[testenv:coverage]
14-
basepython = python3.5
14+
basepython = python3.8
1515
deps = {[testenv]deps}
1616
commands =
1717
coverage run --source morepath_sqlalchemy -m py.test {posargs}

0 commit comments

Comments
 (0)