Skip to content

Commit

Permalink
pytest-lsp: Add support for Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
alcarney committed Aug 26, 2024
1 parent 1809d3a commit f2c7d6a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest-lsp-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.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest, windows-latest]

steps:
Expand Down
1 change: 1 addition & 0 deletions lib/pytest-lsp/changes/180.misc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add support for Python 3.13
2 changes: 1 addition & 1 deletion lib/pytest-lsp/hatch.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ packages = ["pytest_lsp"]
dependencies = ["pytest-asyncio"]

[[envs.hatch-test.matrix]]
python = ["3.9", "3.10", "3.11", "3.12"]
python = ["3.9", "3.10", "3.11", "3.12", "3.13"]
pytest = ["8"]

[envs.hatch-test.overrides]
Expand Down
2 changes: 1 addition & 1 deletion lib/pytest-lsp/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"importlib-resources; python_version<\"3.9\"",
"packaging",
"pygls>=1.1.0",
"pytest",
Expand Down

0 comments on commit f2c7d6a

Please sign in to comment.