Skip to content

Commit 2a25440

Browse files
committed
Drop Python 3.9, add Python 3.11 to CI
1 parent 70d9f12 commit 2a25440

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
PYTHON_VERSION: ['3.8']
20+
PYTHON_VERSION: ['3.9']
2121
timeout-minutes: 10
2222
steps:
2323
- uses: actions/cache@v1

.github/workflows/test-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
PYTHON_VERSION: ['3.10', '3.9', '3.8']
27+
PYTHON_VERSION: ['3.11', '3.10', '3.9']
2828
timeout-minutes: 10
2929
steps:
3030
- uses: actions/cache@v4

.github/workflows/test-mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
PYTHON_VERSION: ['3.10', '3.9', '3.8']
27+
PYTHON_VERSION: ['3.11', '3.10', '3.9']
2828
timeout-minutes: 10
2929
steps:
3030
- uses: actions/cache@v4

.github/workflows/test-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
PYTHON_VERSION: ['3.10', '3.9', '3.8']
27+
PYTHON_VERSION: ['3.11', '3.10', '3.9']
2828
timeout-minutes: 10
2929
steps:
3030
- uses: actions/cache@v4

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ authors = [{name = "Python Language Server Contributors"}]
1111
description = "Python Language Server for the Language Server Protocol"
1212
readme = "README.md"
1313
license = {text = "MIT"}
14-
requires-python = ">=3.8"
14+
requires-python = ">=3.0"
1515
dependencies = [
1616
"docstring-to-markdown",
1717
"importlib_metadata>=4.8.3;python_version<\"3.10\"",
@@ -120,8 +120,8 @@ exclude = [
120120
line-length = 88
121121
indent-width = 4
122122

123-
# Assume Python 3.8
124-
target-version = "py38"
123+
# Assume Python 3.9
124+
target-version = "py39"
125125

126126
[tool.ruff.lint]
127127
# https://docs.astral.sh/ruff/rules/

0 commit comments

Comments
 (0)