File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 82
82
typecode[full] >= 30.0.1
83
83
84
84
patch =
85
- patch >= 1.16
85
+ patch-ng >= 1.17
86
86
87
87
testing =
88
88
pytest >= 6, != 7.0.0
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ def patch_info(location):
134
134
135
135
Raise an exception if the file is not a patch file or cannot be parsed.
136
136
"""
137
- import patch as pythonpatch
137
+ import patch_ng as pythonpatch
138
138
patchset = pythonpatch .fromfile (location )
139
139
if not patchset :
140
140
msg = 'Unable to parse patch file: %(location)s' % locals ()
Original file line number Diff line number Diff line change 18
18
from extractcode import patch
19
19
20
20
try :
21
- import patch as _pythonpatch
21
+ import patch_ng as _pythonpatch
22
22
except ImportError :
23
23
import pytest
24
24
pytestmark = pytest .mark .skipif (True , reason = "Run only if patch is installed." )
You can’t perform that action at this time.
0 commit comments