Skip to content

Commit

Permalink
feat: drop support for Python 3.7
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Drop support for Python 3.7 as it reached EOL on June 27, 2023. More infos: https://devguide.python.org/versions/

Committed via https://github.com/asottile/all-repos
  • Loading branch information
browniebroke committed Jun 27, 2023
1 parent a613a0e commit 8f8eca8
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 13 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/ci.yml
Expand Up @@ -24,15 +24,6 @@ jobs:
fail-fast: false
matrix:
versions:
- python: "3.7"
django: "2.2"
- python: "3.7"
django: "3.0"
- python: "3.7"
django: "3.1"
- python: "3.7"
django: "3.2"

- python: "3.8"
django: "2.2"
- python: "3.8"
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Expand Up @@ -36,7 +36,7 @@ repos:
rev: v3.7.0
hooks:
- id: pyupgrade
args: [--py37-plus]
args: [--py38-plus]
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
hooks:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -41,7 +41,7 @@ This version **does not** include any static files, it's using the TinyMCE from

## Compatibility

- **Python**: 3.7-3.10
- **Python**: 3.8-3.10
- **Django**: 2.2-4.1

## Quick Start
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Expand Up @@ -6,7 +6,7 @@ The main difference with the original fork is that it **does not** include any s

## Compatibility

- **Python**: 3.7-3.10
- **Python**: 3.8-3.10
- **Django**: 2.2-4.1

## License
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -33,7 +33,7 @@ packages = [
]

[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
Django = ">=2.2,<4.2"
pyenchant = { version = "^3.1", optional = true }

Expand Down

0 comments on commit 8f8eca8

Please sign in to comment.