Add py311 in tox file

Add py311 in tox file
Remove require virtualenv in tox file.

Change-Id: I3f742784a21fefad581127693e76d2349835d18a
This commit is contained in:
Hemanth Nakkina
2023-10-19 18:21:06 +05:30
parent e380551b21
commit 5fd9c582e8

View File

@@ -6,7 +6,6 @@ envlist = lint, py3
sitepackages = False
skip_missing_interpreters = False
minversion = 3.18.0
requires = virtualenv < 20.0
[vars]
src_path = {toxinidir}/ops_sunbeam
@@ -69,6 +68,10 @@ deps = {[testenv:py3]deps}
basepython = python3.10
deps = {[testenv:py3]deps}
[testenv:py311]
basepython = python3.11
deps = {[testenv:py3]deps}
[testenv:pep8]
description = Alias for lint
deps = {[testenv:lint]deps}