File tree 2 files changed +5
-4
lines changed 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -181,6 +181,11 @@ ignore_path = [
181
181
182
182
[tool .setuptools_scm ]
183
183
184
+ # We use a fallback version like
185
+ # https://github.com/pypa/setuptools_scm/issues/77 so that we do not
186
+ # error in the Docker build stage of the release pipeline.
187
+ fallback_version = " FALLBACK_VERSION"
188
+
184
189
185
190
[tool .pydocstyle ]
186
191
# We do not have summary lines, care about "mood", or need sections with
Original file line number Diff line number Diff line change @@ -32,10 +32,6 @@ def _get_dependencies(requirements_file: Path) -> list[str]:
32
32
)
33
33
34
34
setup (
35
- # We use a dictionary with a fallback version rather than "True"
36
- # like https://github.com/pypa/setuptools_scm/issues/77 so that we do not
37
- # error in the Docker build stage of the release pipeline.
38
- use_scm_version = {'fallback_version' : 'FALLBACK_VERSION' },
39
35
setup_requires = SETUP_REQUIRES ,
40
36
install_requires = INSTALL_REQUIRES ,
41
37
extras_require = {'dev' : DEV_REQUIRES },
You can’t perform that action at this time.
0 commit comments