Skip to content

Commit d3620c6

Browse files
committed
drop support for 3.7; test 3.12
1 parent 9f504d4 commit d3620c6

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
os: [ubuntu-latest, windows-latest]
23-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
23+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
2424
runs-on: ${{ matrix.os }}
2525

2626
steps:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This is a plugin for the `Python LSP Server`_.
1111

1212
.. _`Python LSP Server`: https://github.com/python-lsp/python-lsp-server
1313

14-
It, like mypy, requires Python 3.7 or newer.
14+
It, like mypy, requires Python 3.8 or newer.
1515

1616

1717
Installation

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ live_mode = true
2323
strict = true
2424

2525
[tool.mypy]
26-
python_version = "3.7"
26+
python_version = "3.8"
2727

2828
[[tool.mypy.overrides]]
2929
module = "pylsp.*"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
python-lsp-server
22
mypy >= 0.981
3-
tomli >= 1.1.0 ; python_version < "3.11"
3+
tomli >= 1.1.0
44
black
55
pre-commit
66
rstcheck

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ classifiers =
1717
Programming Language :: Python :: 3.11
1818

1919
[options]
20-
python_requires = >= 3.7
20+
python_requires = >= 3.8
2121
packages = find:
2222
install_requires =
2323
python-lsp-server >=1.7.0
2424
mypy >= 0.981
25-
tomli >= 1.1.0 ; python_version < "3.11"
25+
tomli >= 1.1.0
2626

2727
[flake8]
2828
max-complexity = 20

0 commit comments

Comments
 (0)