Updates testing to python 3.9 (#548)

This commit is contained in:
Ilan Steemers
2021-05-01 13:18:33 +02:00
committed by GitHub
parent 9afcb9e092
commit 685691ff4c
5 changed files with 7 additions and 5 deletions

View File

@@ -5,8 +5,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.6, 3.7, 3.8 ]
django: [ "2.2", "3.1" ]
python-version: [ 3.7, 3.8, 3.9 ]
django: [ "2.2", "3.2" ]
services:
disque:
image: efrecon/disque:1.0-rc1

View File

@@ -31,7 +31,7 @@ Requirements
- `Arrow <https://github.com/crsmithdev/arrow>`__
- `Blessed <https://github.com/jquast/blessed>`__
Tested with: Python 3.7, 3.8 Django 2.2.X and 3.1.X
Tested with: Python 3.7, 3.8, 3.9 Django 2.2.X and 3.2.X
.. warning:: Since Python 3.7 `async` became a reserved keyword and was refactored to `async_task`

View File

@@ -27,12 +27,12 @@ Installation
Requirements
------------
Django Q is tested for Python 3.7 and 3.8
Django Q is tested for Python 3.7, 3.8 and 3.9
- `Django <https://www.djangoproject.com>`__
Django Q aims to use as much of Django's standard offerings as possible
The code is tested against Django versions `2.2.x` and `3.1.x`.
The code is tested against Django versions `2.2.x` and `3.2.x`.
Please note that Django versions below 2.0 do not support Python 3.7
- `Django-picklefield <https://github.com/gintas/django-picklefield>`__

View File

@@ -25,6 +25,7 @@ classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP',
'Topic :: System :: Distributed Computing',
'Topic :: Software Development :: Libraries :: Python Modules',

View File

@@ -53,6 +53,7 @@ setup(
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP',
'Topic :: System :: Distributed Computing',
'Topic :: Software Development :: Libraries :: Python Modules',