Skip to content

Commit

Permalink
added support for django-3.1 and python-3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
thomst committed Aug 29, 2021
1 parent db2b900 commit 353970d
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 7 deletions.
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ matrix:
env: REQ="Django>=2.2,<3.0"
- python: "3.6"
env: REQ="Django>=3.0,<3.1"
- python: "3.6"
env: REQ="Django>=3.1,<3.2"
- python: "3.7"
env: REQ="Django>=1.11,<2.0"
- python: "3.7"
Expand All @@ -39,10 +41,18 @@ matrix:
env: REQ="Django>=2.2,<3.0"
- python: "3.7"
env: REQ="Django>=3.0,<3.1"
- python: "3.7"
env: REQ="Django>=3.1,<3.2"
- python: "3.8"
env: REQ="Django>=2.2,<3.0"
- python: "3.8"
env: REQ="Django>=3.0,<3.1"
- python: "3.8"
env: REQ="Django>=3.1,<3.2"
- python: "3.9"
env: REQ="Django>=3.0,<3.1"
- python: "3.9"
env: REQ="Django>=3.1,<3.2"
install:
- pip install -U pip setuptools coveralls
- pip install $REQ
Expand Down
12 changes: 6 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ Welcome to django-admin-csvexport
.. image:: https://coveralls.io/repos/github/thomst/django-admin-csvexport/badge.svg?branch=master
:target: https://coveralls.io/github/thomst/django-admin-csvexport?branch=master

.. image:: https://img.shields.io/badge/python-3.4%20%7C%203.5%20%7C%203.6%20%7C%203.7%20%7C%203.8-blue
:target: https://img.shields.io/badge/python-3.4%20%7C%203.5%20%7C%203.6%20%7C%203.7%20%7C%203.8-blue
:alt: python: 3.4, 3.5, 3.6, 3.7, 3.8
.. image:: https://img.shields.io/badge/python-3.4%20%7C%203.5%20%7C%203.6%20%7C%203.7%20%7C%203.8%20%7C%203.9-blue
:target: https://img.shields.io/badge/python-3.4%20%7C%203.5%20%7C%203.6%20%7C%203.7%20%7C%203.8%20%7C%203.9-blue
:alt: python: 3.4, 3.5, 3.6, 3.7, 3.8, 3.9

.. image:: https://img.shields.io/badge/django-1.11%20%7C%202.0%20%7C%202.1%20%7C%202.2%20%7C%203.0-orange
:target: https://img.shields.io/badge/django-1.11%20%7C%202.0%20%7C%202.1%20%7C%202.2%20%7C%203.0-orange
:alt: django: 1.11, 2.0, 2.1, 2.2, 3.0
.. image:: https://img.shields.io/badge/django-1.11%20%7C%202.0%20%7C%202.1%20%7C%202.2%20%7C%203.0%20%7C%203.1-orange
:target: https://img.shields.io/badge/django-1.11%20%7C%202.0%20%7C%202.1%20%7C%202.2%20%7C%203.0%20%7C%203.1-orange
:alt: django: 1.11, 2.0, 2.1, 2.2, 3.0, 3.1


Description
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ def read(filename):
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Application Frameworks",
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ envlist =
{py34,py35,py36,py37}-django20,
{py35,py36,py37}-django21,
{py35,py36,py37,py38}-django22,
{py36,py37,py38}-django30
{py36,py37,py38,py39}-django30,
{py36,py37,py38,py39}-django31
skip_missing_interpreters = true

[testenv]
Expand All @@ -19,6 +20,7 @@ deps =
django21: Django>=2.1,<2.2
django22: Django>=2.2,<3.0
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2

commands = {envpython} tests/manage.py test testapp {posargs}
setenv = PYTHONPATH = .:{toxworkdir}

0 comments on commit 353970d

Please sign in to comment.