From 515e07227b37ffb88deeb6c9b099c7463d9612cb Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Tue, 16 Nov 2021 21:44:29 +0100 Subject: [PATCH] Try to enable Python 3.10 in CI --- .github/workflows/ci.yml | 4 ++-- setup.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 188d3e34..ae5b13cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,8 +7,8 @@ jobs: strategy: matrix: os: [ubuntu-20.04, windows-2019] - python-version: [3.9, 3.8, 3.7, 3.6] - environment: ['3.8', '3.9', '3.7', '3.6', 'interpreter'] + python-version: [3.10, 3.9, 3.8, 3.7, 3.6] + environment: ['3.8', '3.10', '3.9', '3.7', '3.6', 'interpreter'] steps: - name: Checkout code uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index 1f660a4d..099fe18c 100755 --- a/setup.py +++ b/setup.py @@ -61,6 +61,7 @@ setup(name='jedi', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Text Editors :: Integrated Development Environments (IDE)', 'Topic :: Utilities',