From 9c5ec674453a9742c141d201153bd12b73846355 Mon Sep 17 00:00:00 2001 From: Jongwook Choi Date: Tue, 7 Jan 2025 09:17:23 -0500 Subject: [PATCH] ci: update tox.ini to include python 3.13 --- .github/workflows/test.yml | 1 + tox.ini | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d5cd579a..73e0e2d5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,6 +28,7 @@ jobs: fail-fast: false matrix: config: [ + # NOTE: don't forget updating tox.ini { python-version: '3.13', neovim-version: 'nightly' }, { python-version: '3.12', neovim-version: 'nightly' }, { python-version: '3.12', neovim-version: 'stable' }, diff --git a/tox.ini b/tox.ini index d215e606..8010a9eb 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ [tox] min_version = 4.0 envlist = - py{37,38,39,310,311,312}-asyncio + py{37,38,39,310,311,312,313}-asyncio checkqa skip_missing_interpreters = true @@ -18,6 +18,7 @@ python = 3.10: py310 3.11: py311 3.12: py312 + 3.13: py313 pypy3: pypy3 [testenv]