Skip to content

Commit

Permalink
Start testing against 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
alcarney committed Jul 21, 2024
1 parent 47989e3 commit e581016
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/tools.mk
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ HATCH_VERSION = 1.10.0
NODE_VERSION := 18.20.2

# The versions of Python we support
PYXX_versions := 3.9 3.10 3.11 3.12
PYXX_versions := 3.9 3.10 3.11 3.12 3.13
PY_INTERPRETERS =

# Hatch is not only used for building packages, but bootstrapping any missing
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lsp-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ 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]

allow-prereleases: true
steps:
- uses: actions/checkout@v4

Expand Down
1 change: 1 addition & 0 deletions code/changes/859.misc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add support for Python 3.13
1 change: 1 addition & 0 deletions lib/esbonio/changes/859.misc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add support for Python 3.13
4 changes: 2 additions & 2 deletions lib/esbonio/hatch.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ extra-dependencies = ["pytest-lsp>=0.3.1,<1"]
matrix-name-format = "{variable}{value}"

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

[[envs.hatch-test.matrix]]
python = ["3.9", "3.10", "3.11", "3.12"]
python = ["3.9", "3.10", "3.11", "3.12", "3.13"]
sphinx = ["5", "6", "7"]

[envs.hatch-test.overrides]
Expand Down
4 changes: 2 additions & 2 deletions lib/esbonio/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Alex Carney", email = "alcarneyme@gmail.com" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
Expand All @@ -20,6 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
]
Expand All @@ -42,7 +43,6 @@ esbonio = "esbonio.server.cli:main"

[project.optional-dependencies]
typecheck = ["mypy", "pytest-lsp>=0.3.1", "types-docutils", "types-pygments"]
dev = ["black", "flake8", "pre-commit", "tox"]

[tool.coverage.run]
parallel = true
Expand Down

0 comments on commit e581016

Please sign in to comment.