Skip to content

Commit 21ff81e

Browse files
committed
Do not update patch version
Signed-off-by: Uilian Ries <uilianries@gmail.com>
1 parent 46f1232 commit 21ff81e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

patch_ng.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
from __future__ import print_function
3232

3333
__author__ = "Conan.io <info@conan.io>"
34-
__version__ = "1.17.4"
34+
__version__ = "1.17.3"
3535
__license__ = "MIT"
3636
__url__ = "https://github.com/conan-io/python-patch"
3737

tests/run_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ def test_pathstrip(self):
489489
self.assertEqual(patch_ng.pathstrip(b'path/name.diff', 0), b'path/name.diff')
490490

491491
def remove_tree_force(folder):
492-
for root, dirs, files in os.walk(folder):
492+
for root, _, files in os.walk(folder):
493493
for it in files:
494494
chmod(os.path.join(root, it), stat.S_IWUSR | stat.S_IWGRP | stat.S_IWOTH)
495495
shutil.rmtree(folder, ignore_errors=True)

0 commit comments

Comments
 (0)