Skip to content

Commit

Permalink
Add Python 3.12 build (#85)
Browse files Browse the repository at this point in the history
* Add Python 3.12 build

* Update typing extensions

* Remove Python 3.7
  • Loading branch information
offa authored Dec 31, 2023
1 parent 8cc05ad commit 9529df5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-22.04, windows-2022]
steps:
- name: Checkout
Expand Down
6 changes: 3 additions & 3 deletions pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = [
dependencies = [
"pygls>=1.1.1",
]
requires-python = ">=3.7.9,<3.12"
requires-python = ">=3.8.0,<3.13"
readme = "README.md"
license = {text = "MIT"}
keywords = ["cmake", "completion", "vim", "lsp"]
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[tox]
env_list = py{37,38,39,310,311}
env_list = py{38,39,310,311,312}
isolated_build = True
passenv = *
setenv =
PDM_IGNORE_SAVED_PYTHON="1"

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312

[testenv]
allowlist_externals =
Expand Down

0 comments on commit 9529df5

Please sign in to comment.