Add Python 3.13 support (#94)

This commit is contained in:
offa
2024-10-13 14:07:01 +00:00
committed by GitHub
parent 890bb77f8a
commit 1c40387cac
3 changed files with 4 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"] python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-22.04, windows-2022] os: [ubuntu-22.04, windows-2022]
steps: steps:
- name: Checkout - name: Checkout

View File

@@ -8,7 +8,7 @@ authors = [
dependencies = [ dependencies = [
"pygls>=1.1.1", "pygls>=1.1.1",
] ]
requires-python = ">=3.8.0,<3.13" requires-python = ">=3.8.0,<=3.13"
readme = "README.md" readme = "README.md"
license = {text = "MIT"} license = {text = "MIT"}
keywords = ["cmake", "completion", "vim", "lsp"] keywords = ["cmake", "completion", "vim", "lsp"]

View File

@@ -1,5 +1,5 @@
[tox] [tox]
env_list = py{38,39,310,311,312} env_list = py{38,39,310,311,312,313}
isolated_build = True isolated_build = True
passenv = * passenv = *
setenv = setenv =
@@ -12,6 +12,7 @@ python =
3.10: py310 3.10: py310
3.11: py311 3.11: py311
3.12: py312 3.12: py312
3.13: py313
[testenv] [testenv]
allowlist_externals = allowlist_externals =