From 7666f4d34490476a600a82c7ca78d4df6f531529 Mon Sep 17 00:00:00 2001 From: Chintan Joshi Date: Mon, 8 Apr 2024 16:25:38 +0300 Subject: [PATCH] build: add python311 support --- .github/workflows/ci.yml | 2 +- requirements/local.txt | 4 ++-- tox.ini | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb50e98b12..a082c6756c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['py38'] + python-version: ['py38', 'py311'] django-version: ['django42'] db-version: ['mysql80'] pytest-split-group: [1, 2, 3, 4, 5, 6] diff --git a/requirements/local.txt b/requirements/local.txt index 2064e45cec..6670cdb942 100644 --- a/requirements/local.txt +++ b/requirements/local.txt @@ -434,7 +434,7 @@ exceptiongroup==1.2.0 # pytest # trio # trio-websocket -execnet==2.1.0 +execnet==2.1.1 # via pytest-xdist face==22.0.0 # via glom @@ -592,7 +592,7 @@ packaging==21.3 # tox paramiko==3.4.0 # via docker -path==16.12.1 +path==16.13.0 # via edx-i18n-tools pbr==6.0.0 # via stevedore diff --git a/tox.ini b/tox.ini index 48e3fd1b6b..dad6a3161d 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py38-django{42} +envlist = py{38, 311}-django{42} skipsdist=true [pytest]