Skip to content

Commit d51b94b

Browse files
committed
Update supported python versions
1 parent 84fb3d1 commit d51b94b

3 files changed

Lines changed: 14 additions & 10 deletions

File tree

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ addons:
55
before_script:
66
- psql -c 'create database mailboxer;' -U postgres
77
python:
8-
- '2.7'
9-
- '3.3'
10-
- '3.4'
11-
- '3.5'
8+
- '3.6'
9+
- '3.7'
10+
- '3.8'
11+
- '3.9'
1212
script:
1313
- make travis_test
1414
deploy:

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@
1212

1313
setup(name="mailboxer-python",
1414
classifiers = [
15-
"Programming Language :: Python :: 2.6",
16-
"Programming Language :: Python :: 2.7",
17-
"Programming Language :: Python :: 3.3",
15+
"Programming Language :: Python :: 3.6",
16+
"Programming Language :: Python :: 3.7",
17+
"Programming Language :: Python :: 3.8",
18+
"Programming Language :: Python :: 3.9",
1819
],
1920
description="Client library for Mailboxer",
2021
license="BSD3",

tox.ini

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
[tox]
2-
envlist = py26,py27,py33
2+
envlist = py36,py37,py38,py39
33

44
[testenv]
5-
commands=python {toxinidir}/_test_build.py
6-
changedir = {toxinidir}
5+
commands =
6+
python tests
7+
extras =
8+
testing
9+
changedir = {toxinidir}

0 commit comments

Comments
 (0)