Skip to content

Commit 408b2c1

Browse files
committed
Drop tests/support for 3.5 and 3.6
1 parent 663ac65 commit 408b2c1

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

.github/workflows/build.yml

-5
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@ jobs:
1515
matrix:
1616
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1717
os: [macOS-latest, ubuntu-latest, windows-latest]
18-
include:
19-
- python-version: "3.5"
20-
os: ubuntu-latest
21-
- python-version: "3.6"
22-
os: ubuntu-latest
2318
steps:
2419
- name: Checkout
2520
uses: actions/checkout@v3

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Google's [Diff Match and Patch][DMP] library, packaged for modern Python.
88

99
## Install
1010

11-
diff-match-patch is supported on Python 3.5 or newer.
11+
diff-match-patch is supported on Python 3.7 or newer.
1212
You can install it from PyPI:
1313

1414
```shell

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ classifiers = [
2020
"Topic :: Software Development :: Libraries",
2121
"Topic :: Text Processing",
2222
]
23-
requires-python = ">=3.5"
23+
requires-python = ">=3.7"
2424
dependencies = []
2525

2626
[project.optional-dependencies]
@@ -48,4 +48,4 @@ signed_tags = true
4848
version_file = true
4949

5050
[tool.mypy]
51-
python_version = "3.6"
51+
python_version = "3.7"

0 commit comments

Comments
 (0)