Add pypy versions support (#321)

* Add pypy versions support

* Update Python classifiers
This commit is contained in:
Paolo Melchiorre 2021-11-08 15:50:21 +01:00 committed by GitHub
parent 2655ecdd4f
commit 7ff29852ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 5 deletions

View file

@ -13,7 +13,7 @@ jobs:
fail-fast: false
max-parallel: 5
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', 'pypy3']
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', 'pypy-3.6', 'pypy-3.7', 'pypy-3.8']
steps:
- uses: actions/checkout@v2

View file

@ -48,13 +48,13 @@ setup(
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',

View file

@ -5,8 +5,8 @@ minversion = 1.8
whitelist_externals = sphinx-build
envlist =
py36-checkqa
py{36,37,py3}-dj{22,31,32}
py{38,39}-dj{22,31,32,40,main}
py{36,37,py36,py37}-dj{22,31,32}
py{38,39,py38}-dj{22,31,32,40,main}
py{310}-dj{32,40,main}
[gh-actions]
@ -16,7 +16,9 @@ python =
3.8: py38
3.9: py39
3.10: py310
pypy3: pypy3
pypy-3.6: pypy36
pypy-3.7: pypy37
pypy-3.8: pypy38
[testenv]
usedevelop = true