Skip to content

Commit 7e2da22

Browse files
add missing config arg to hacks hooks
1 parent 986a40c commit 7e2da22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/setuptools_scm/hacks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from .version import meta
44

55

6-
def parse_pkginfo(root):
6+
def parse_pkginfo(root, config):
77

88
pkginfo = os.path.join(root, "PKG-INFO")
99
trace("pkginfo", pkginfo)
@@ -13,7 +13,7 @@ def parse_pkginfo(root):
1313
return meta(version, preformatted=True)
1414

1515

16-
def parse_pip_egg_info(root):
16+
def parse_pip_egg_info(root, config):
1717
pipdir = os.path.join(root, "pip-egg-info")
1818
if not os.path.isdir(pipdir):
1919
return

0 commit comments

Comments
 (0)