mirror of
https://github.com/Hopiu/django-cachalot.git
synced 2026-03-16 21:30:23 +00:00
Add Python 3.9 support
This commit is contained in:
parent
689f679ad3
commit
7b22ba5c3f
2 changed files with 9 additions and 3 deletions
|
|
@ -8,6 +8,7 @@ python:
|
|||
- "3.6"
|
||||
- "3.7"
|
||||
- "3.8"
|
||||
- "3.9"
|
||||
|
||||
services:
|
||||
- memcached
|
||||
|
|
@ -33,6 +34,10 @@ matrix:
|
|||
env: DJANGO=2.0
|
||||
- python: 3.8
|
||||
env: DJANGO=2.1
|
||||
- python: 3.9
|
||||
env: DJANGO=2.0
|
||||
- python: 3.9
|
||||
env: DJANGO=2.1
|
||||
|
||||
install: pip install tox tox-travis coveralls
|
||||
|
||||
|
|
|
|||
7
tox.ini
7
tox.ini
|
|
@ -2,9 +2,9 @@
|
|||
envlist =
|
||||
py{35,36,37}-django2.0-{sqlite3,postgresql,mysql}-{redis,memcached,pylibmc,locmem,filebased},
|
||||
py{35,36,37}-django2.1-{sqlite3,postgresql,mysql}-{redis,memcached,pylibmc,locmem,filebased},
|
||||
py{35,36,37,38}-django2.2-{sqlite3,postgresql,mysql}-{redis,memcached,pylibmc,locmem,filebased},
|
||||
py{36,37,38}-django3.0-{sqlite3,postgresql,mysql}-{redis,memcached,pylibmc,locmem,filebased},
|
||||
py{36,37,38}-django3.1-{sqlite3,postgresql,mysql}-{redis,memcached,pylibmc,locmem,filebased},
|
||||
py{35,36,37,38,39}-django2.2-{sqlite3,postgresql,mysql}-{redis,memcached,pylibmc,locmem,filebased},
|
||||
py{36,37,38,39}-django3.0-{sqlite3,postgresql,mysql}-{redis,memcached,pylibmc,locmem,filebased},
|
||||
py{36,37,38,39}-django3.1-{sqlite3,postgresql,mysql}-{redis,memcached,pylibmc,locmem,filebased},
|
||||
|
||||
[testenv]
|
||||
basepython =
|
||||
|
|
@ -12,6 +12,7 @@ basepython =
|
|||
py36: python3.6
|
||||
py37: python3.7
|
||||
py38: python3.8
|
||||
py39: python3.9
|
||||
deps =
|
||||
django2.0: Django>=2.0,<2.1
|
||||
django2.1: Django>=2.1,<2.2
|
||||
|
|
|
|||
Loading…
Reference in a new issue