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 bd7fe01 commit ba9e6c0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,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 pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ packages = [
djcodemod = "django_codemod.cli:djcodemod"

[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
click = "<9"
libcst = "==1.0.1"
pathspec = ">=0.6,<1"
Expand Down

0 comments on commit ba9e6c0

Please sign in to comment.