From 4a96dc42f8e8d4b234c7b0e8889b583b91805dda Mon Sep 17 00:00:00 2001 From: Alex Carney Date: Wed, 6 Nov 2024 18:57:38 +0000 Subject: [PATCH] lsp-devtools: Drop Python 3.8 support --- .github/workflows/lsp-devtools-pr.yml | 2 +- lib/lsp-devtools/changes/190.misc.md | 1 + lib/lsp-devtools/pyproject.toml | 7 ++----- 3 files changed, 4 insertions(+), 6 deletions(-) create mode 100644 lib/lsp-devtools/changes/190.misc.md diff --git a/.github/workflows/lsp-devtools-pr.yml b/.github/workflows/lsp-devtools-pr.yml index 87542ed..c640450 100644 --- a/.github/workflows/lsp-devtools-pr.yml +++ b/.github/workflows/lsp-devtools-pr.yml @@ -41,7 +41,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12"] os: [ubuntu-latest] steps: diff --git a/lib/lsp-devtools/changes/190.misc.md b/lib/lsp-devtools/changes/190.misc.md new file mode 100644 index 0000000..a7d42d9 --- /dev/null +++ b/lib/lsp-devtools/changes/190.misc.md @@ -0,0 +1 @@ +Drop Python 3.8 support diff --git a/lib/lsp-devtools/pyproject.toml b/lib/lsp-devtools/pyproject.toml index edf3b62..531c50f 100644 --- a/lib/lsp-devtools/pyproject.toml +++ b/lib/lsp-devtools/pyproject.toml @@ -7,7 +7,7 @@ name = "lsp-devtools" dynamic = ["version"] description = "Developer tooling for language servers" readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.9" license = { text = "MIT" } authors = [{ name = "Alex Carney", email = "alcarneyme@gmail.com" }] classifiers = [ @@ -16,7 +16,6 @@ classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", @@ -24,12 +23,10 @@ classifiers = [ ] dependencies = [ "aiosqlite", - "importlib-resources; python_version<\"3.9\"", "platformdirs", - "pygls>=1.1.0", + "pygls>=1.1.0,<2", "stamina", "textual>=0.41.0", - "typing-extensions; python_version<\"3.8\"", ] [project.urls]