From 078149f08732e460f5c9197190c08a244d837254 Mon Sep 17 00:00:00 2001 From: Matthew Avaylon Date: Tue, 21 May 2024 07:18:59 -0700 Subject: [PATCH] Update tox.ini --- tox.ini | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 8aecbb544..9a1892181 100644 --- a/tox.ini +++ b/tox.ini @@ -23,15 +23,23 @@ commands = python -m pip list python test.py -v -# Test with python 3.12; pinned dev reqs; upgraded run reqs +# Test with python 3.11; optional and dev reqs (some features are not compatible with 3.12 yet) [testenv:py312-upgraded] -basepython = python3.12 +basepython = python3.11 install_command = python -m pip install -U {opts} {packages} deps = -rrequirements-dev.txt commands = {[testenv]commands} +# Test with python 3.12; pinned dev reqs; upgraded run reqs +[testenv:py311-optional] +basepython = python3.11 +deps = + -rrequirements-dev.txt + -rrequirements-opt.txt +commands = {[testenv]commands} + # Test with python 3.12; pinned dev reqs; upgraded, pre-release run reqs [testenv:py312-prerelease] basepython = python3.12