File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
continuous_delivery_scripts/plugins Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 3030
3131
3232def _create_wheel () -> None :
33+ logger .info ("Creating wheel" )
3334 root = configuration .get_value (ConfigurationVariable .PROJECT_ROOT )
3435 with cd (root ):
3536 check_call (
@@ -155,7 +156,8 @@ def check_credentials(self) -> None:
155156 def generate_code_documentation (self , output_directory : Path , module_to_document : str ) -> None :
156157 """Generates code documentation."""
157158 super ().generate_code_documentation (output_directory , module_to_document )
158- _generate_pdoc_in_correct_structure (module_to_document , output_directory )
159+ # FIXME commented out code documentation as failing
160+ # _generate_pdoc_in_correct_structure(module_to_document, output_directory)
159161
160162 def can_add_licence_headers (self ) -> bool :
161163 """States that licence headers can be added."""
@@ -167,7 +169,8 @@ def can_get_project_metadata(self) -> bool:
167169
168170 def should_include_spdx_in_package (self ) -> bool :
169171 """States whether the SPDX documents should be included in the package."""
170- return True
172+ # FIXME Comment out SPDX package as no longer working
173+ return False
171174
172175 def get_current_spdx_project (self ) -> Optional [SpdxProject ]:
173176 """Gets the current SPDX description."""
You can’t perform that action at this time.
0 commit comments