Skip to content

Commit

Permalink
lsp-devtools: Drop Python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
alcarney committed Nov 6, 2024
1 parent fbe8d71 commit a7abb52
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lsp-devtools-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 1 addition & 0 deletions lib/lsp-devtools/changes/190.misc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Drop Python 3.8 support
7 changes: 2 additions & 5 deletions lib/lsp-devtools/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]" }]
classifiers = [
Expand All @@ -16,20 +16,17 @@ 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",
"Programming Language :: Python :: 3.12",
]
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]
Expand Down

0 comments on commit a7abb52

Please sign in to comment.