mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
Add pypy versions support (#321)
* Add pypy versions support * Update Python classifiers
This commit is contained in:
parent
2655ecdd4f
commit
7ff29852ab
3 changed files with 7 additions and 5 deletions
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -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',
|
||||
|
|
|
|||
8
tox.ini
8
tox.ini
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue