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 0c01df0 commit a553721Copy full SHA for a553721
continuous_delivery_scripts/plugins/python.py
@@ -30,6 +30,7 @@
30
31
32
def _create_wheel() -> None:
33
+ logger.info("Creating wheel")
34
root = configuration.get_value(ConfigurationVariable.PROJECT_ROOT)
35
with cd(root):
36
check_call(
@@ -167,7 +168,8 @@ def can_get_project_metadata(self) -> bool:
167
168
169
def should_include_spdx_in_package(self) -> bool:
170
"""States whether the SPDX documents should be included in the package."""
- return True
171
+ # FIXME Comment out SPDX package as no longer working
172
+ return False
173
174
def get_current_spdx_project(self) -> Optional[SpdxProject]:
175
"""Gets the current SPDX description."""
0 commit comments