From 4d45a30bbf31d7d756fdccbd51e97e7fdb9445c9 Mon Sep 17 00:00:00 2001 From: xymy Date: Sat, 9 Dec 2023 10:38:58 +0800 Subject: [PATCH] Remove pyupgrade --- .pre-commit-config.yaml | 5 ----- CHANGELOG.md | 4 ++++ 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a3b99db..5cc09ef 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -13,11 +13,6 @@ repos: - id: fix-byte-order-marker - id: mixed-line-ending - id: trailing-whitespace - - repo: https://github.com/asottile/pyupgrade - rev: v3.15.0 - hooks: - - id: pyupgrade - args: [--py39-plus] - repo: https://github.com/psf/black-pre-commit-mirror rev: 23.11.0 hooks: diff --git a/CHANGELOG.md b/CHANGELOG.md index ff7dda0..47ceb80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Removed `glob_scanner()` and `glob_filter()` functions. +### Linting + +- Removed `pyupgrade`. + ### Testing - Preferred `exclude_also` over `exclude_lines` for `coverage`.