ci: run against django 3.2 (#87314)
gitea/bidon/pipeline/head This commit looks good Details

This commit is contained in:
Frédéric Péters 2024-02-22 10:08:00 +01:00
parent b6e8c752be
commit 71c5d46f14
2 changed files with 3 additions and 4 deletions

View File

@ -102,7 +102,7 @@ setup(
'Operating System :: OS Independent',
'Programming Language :: Python',
],
install_requires=['django>=1.8, <1.12'],
install_requires=['django>=3.2, <3.3'],
zip_safe=False,
cmdclass={
'build': build,

View File

@ -1,6 +1,6 @@
[tox]
toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/bidon/{env:BRANCH_NAME:}
envlist = py3-django22-coverage-junit
envlist = py3-coverage-junit
[testenv]
usedevelop = True
@ -11,8 +11,7 @@ setenv =
coverage: COVERAGE=--cov-report xml --cov-report html --cov=bidon/
junit: JUNIT=--junitxml=junit-{envname}.xml
deps =
django22: django>=2.2,<2.3
psycopg2<2.9
psycopg2-binary>=2.9
pytest-cov
pytest-django
pytest