ci: run plugins job with python 3.9 instead of 3.7

Latest Django release dropped support for 3.7.
This commit is contained in:
Ran Benita 2021-12-28 11:01:23 +02:00
parent 1131f23e04
commit 1522afa1cd
2 changed files with 3 additions and 3 deletions

View File

@ -127,7 +127,7 @@ jobs:
use_coverage: true
- name: "plugins"
python: "3.7"
python: "3.9"
os: ubuntu-latest
tox_env: "plugins"

View File

@ -100,9 +100,9 @@ commands =
[testenv:plugins]
# use latest versions of all plugins, including pre-releases
pip_pre=true
# use latest pip and new dependency resolver (#7783)
# use latest pip to get new dependency resolver (#7783)
download=true
install_command=python -m pip --use-feature=2020-resolver install {opts} {packages}
install_command=python -m pip install {opts} {packages}
changedir = testing/plugins_integration
deps = -rtesting/plugins_integration/requirements.txt
setenv =