Skip to content

Commit 762203a

Browse files
committed
Try to fix Docker build issue with setuptools-scm
1 parent 9767fae commit 762203a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ def _get_dependencies(requirements_file: Path) -> list[str]:
3434
setup(
3535
# We use a dictionary with a fallback version rather than "True"
3636
# like https://github.com/pypa/setuptools_scm/issues/77 so that we do not
37-
# error in Docker.
38-
# use_scm_version={'fallback_version': 'FALLBACK_VERSION'},
37+
# error in the Docker build stage of the release pipeline.
38+
use_scm_version={'fallback_version': 'FALLBACK_VERSION'},
3939
setup_requires=SETUP_REQUIRES,
4040
install_requires=INSTALL_REQUIRES,
4141
extras_require={'dev': DEV_REQUIRES},

0 commit comments

Comments
 (0)