mirror of
https://github.com/django-q2/django-q2.git
synced 2026-09-15 13:37:56 +08:00
Updates testing to python 3.9 (#548)
This commit is contained in:
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
@@ -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
|
||||
|
||||
@@ -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`
|
||||
|
||||
|
||||
@@ -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>`__
|
||||
|
||||
@@ -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',
|
||||
|
||||
1
setup.py
1
setup.py
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user