Skip to content

Commit d87a28b

Browse files
authored
Merge pull request pre-commit#1033 from pre-commit/fix-encoding-pragma
Add deprecation messaging for `fix-encoding-pragma`
2 parents c8715b7 + cef973f commit d87a28b

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

.pre-commit-hooks.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145
language: python
146146
types: [text]
147147
- id: fix-encoding-pragma
148-
name: fix python encoding pragma
148+
name: fix python encoding pragma (deprecated)
149149
description: 'adds # -*- coding: utf-8 -*- to the top of python files.'
150150
language: python
151151
entry: fix-encoding-pragma

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,9 @@ The following arguments are available:
127127
removes UTF-8 byte order marker
128128

129129
#### `fix-encoding-pragma`
130+
131+
_Deprecated since py2 is EOL - use [pyupgrade](https://github.com/asottile/pyupgrade) instead._
132+
130133
Add `# -*- coding: utf-8 -*-` to the top of python files.
131134
- To remove the coding pragma pass `--remove` (useful in a python3-only codebase)
132135

pre_commit_hooks/fix_encoding_pragma.py

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from __future__ import annotations
22

33
import argparse
4+
import sys
45
from typing import IO
56
from typing import NamedTuple
67
from typing import Sequence
@@ -107,6 +108,13 @@ def _normalize_pragma(pragma: str) -> bytes:
107108

108109

109110
def main(argv: Sequence[str] | None = None) -> int:
111+
print(
112+
'warning: this hook is deprecated and will be removed in a future '
113+
'release because py2 is EOL. instead, use '
114+
'https://github.com/asottile/pyupgrade',
115+
file=sys.stderr,
116+
)
117+
110118
parser = argparse.ArgumentParser(
111119
'Fixes the encoding pragma of python files',
112120
)

0 commit comments

Comments
 (0)