We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 986a40c commit 7e2da22Copy full SHA for 7e2da22
src/setuptools_scm/hacks.py
@@ -3,7 +3,7 @@
3
from .version import meta
4
5
6
-def parse_pkginfo(root):
+def parse_pkginfo(root, config):
7
8
pkginfo = os.path.join(root, "PKG-INFO")
9
trace("pkginfo", pkginfo)
@@ -13,7 +13,7 @@ def parse_pkginfo(root):
13
return meta(version, preformatted=True)
14
15
16
-def parse_pip_egg_info(root):
+def parse_pip_egg_info(root, config):
17
pipdir = os.path.join(root, "pip-egg-info")
18
if not os.path.isdir(pipdir):
19
return
0 commit comments