Skip to content

Commit c73fbdb

Browse files
authored
Make necessary changes to drop support for Python 3.6 (#16)
1 parent 81f1b86 commit c73fbdb

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Python JSON RPC Server
22

3-
A Python 3.6+ server implementation of the [JSON RPC 2.0](http://www.jsonrpc.org/specification) protocol. This library has been pulled out of the [Python LSP Server](https://github.com/python-lsp/python-lsp-server) project.
3+
A Python 3.7+ server implementation of the [JSON RPC 2.0](http://www.jsonrpc.org/specification) protocol. This library has been pulled out of the [Python LSP Server](https://github.com/python-lsp/python-lsp-server) project.
44

55
## Installation
66

pyproject.toml

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ build-backend = "setuptools.build_meta"
99
name = "python-lsp-jsonrpc"
1010
authors = [{name = "Python Language Server Contributors"}]
1111
description = "JSON RPC 2.0 server library"
12+
license = {text = "MIT"}
13+
requires-python = ">=3.7"
1214
dependencies = ["ujson>=3.0.0"]
1315
dynamic = ["version"]
1416

@@ -30,6 +32,7 @@ test = [
3032
]
3133

3234
[tool.setuptools]
35+
license-files = ["LICENSE"]
3336
include-package-data = false
3437

3538
[tool.setuptools.packages.find]

0 commit comments

Comments
 (0)