~netlandish/django-wiki

6ed5d66c03d01c44e02bd3db54b861bf209dd45c — Mads Jensen 4 years ago b1c328c
Added Python 3.8 to test matrix (#1002)

3 files changed, 13 insertions(+), 0 deletions(-)

M .travis.yml
M setup.py
M tox.ini
M .travis.yml => .travis.yml +9 -0
@@ 35,6 35,15 @@ matrix:
    sudo: true
    env: DJANGO="3.0"

  - python: 3.8
    dist: bionic
    sudo: true
    env: DJANGO="2.2"
  - python: 3.8
    dist: bionic
    sudo: true
    env: DJANGO="3.0"

addons:
  apt:
    packages:

M setup.py => setup.py +2 -0
@@ 86,6 86,8 @@ setup(
        'Programming Language :: Python',
        'Programming Language :: Python :: 3.5',
        'Programming Language :: Python :: 3.6',
        'Programming Language :: Python :: 3.7',
        'Programming Language :: Python :: 3.8',
        'Programming Language :: Python :: Implementation :: CPython',
        'Programming Language :: Python :: Implementation :: PyPy',
        'Topic :: Internet :: WWW/HTTP :: Dynamic Content',

M tox.ini => tox.ini +2 -0
@@ 7,6 7,7 @@ python =
  3.5: py35
  3.6: py36
  3.7: py37
  3.8: py38

[travis:env]
DJANGO =


@@ 40,6 41,7 @@ basepython =
  py35: python3.5
  py36: python3.6
  py37: python3.7
  py38: python3.8

[testenv:lint]
basepython = python3