From 3384de407bbf5f68e9b947716cd19114ba3ee4a3 Mon Sep 17 00:00:00 2001 From: "KimSia, Sim" <245021+simkimsia@users.noreply.github.com> Date: Fri, 8 Sep 2023 23:17:05 +0800 Subject: [PATCH] Added support for python 3.11 (#260) This patch introduces Python versions 3.11 in continuous integration. Signed-off-by: KimSia, Sim <245021+simkimsia@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8af96f6..81799ab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@master diff --git a/tox.ini b/tox.ini index a68908c..c5c67b8 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py35,py36,py37,py38 +envlist = py37,py38,py39,py310,py311 [testenv] deps = .[dev]