Skip to content

Commit a553721

Browse files
committed
⚙️ Update python.py
Update python.py Update test_update_documentation_python.py Update test_generate_docs_python.py :green_heart: linting
1 parent 0c01df0 commit a553721

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

continuous_delivery_scripts/plugins/python.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131

3232
def _create_wheel() -> None:
33+
logger.info("Creating wheel")
3334
root = configuration.get_value(ConfigurationVariable.PROJECT_ROOT)
3435
with cd(root):
3536
check_call(
@@ -167,7 +168,8 @@ def can_get_project_metadata(self) -> bool:
167168

168169
def should_include_spdx_in_package(self) -> bool:
169170
"""States whether the SPDX documents should be included in the package."""
170-
return True
171+
# FIXME Comment out SPDX package as no longer working
172+
return False
171173

172174
def get_current_spdx_project(self) -> Optional[SpdxProject]:
173175
"""Gets the current SPDX description."""

0 commit comments

Comments
 (0)