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 2bbe452 commit 9d3b441Copy full SHA for 9d3b441
src/setuptools_scm/__init__.py
@@ -95,7 +95,9 @@ def _do_parse(config):
95
version = parse_result or _version_from_entrypoints(config, fallback=True)
96
else:
97
# include fallbacks after dropping them from the main entrypoint
98
- version = _version_from_entrypoints(config) or _version_from_entrypoints(config, fallback=True)
+ version = _version_from_entrypoints(config) or _version_from_entrypoints(
99
+ config, fallback=True
100
+ )
101
102
if version:
103
return version
0 commit comments