Skip to content

Commit c53210e

Browse files
authored
Drop support for Python 3.7 (#21)
1 parent b0331b7 commit c53210e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/test-linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
PYTHON_VERSION: ['3.10', '3.9', '3.8', '3.7']
23+
PYTHON_VERSION: ['3.10', '3.9', '3.8']
2424
timeout-minutes: 10
2525
steps:
2626
- uses: actions/cache@v1

.github/workflows/test-mac.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
PYTHON_VERSION: ['3.10', '3.9', '3.8', '3.7']
23+
PYTHON_VERSION: ['3.10', '3.9', '3.8']
2424
timeout-minutes: 10
2525
steps:
2626
- uses: actions/cache@v1

.github/workflows/test-win.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
PYTHON_VERSION: ['3.10', '3.9', '3.8', '3.7']
23+
PYTHON_VERSION: ['3.10', '3.9', '3.8']
2424
timeout-minutes: 10
2525
steps:
2626
- uses: actions/cache@v1

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.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.
3+
A Python 3.8+ 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

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name = "python-lsp-jsonrpc"
1010
authors = [{name = "Python Language Server Contributors"}]
1111
description = "JSON RPC 2.0 server library"
1212
license = {text = "MIT"}
13-
requires-python = ">=3.7"
13+
requires-python = ">=3.8"
1414
dependencies = ["ujson>=3.0.0"]
1515
dynamic = ["version"]
1616

0 commit comments

Comments
 (0)