@@ -63,6 +63,7 @@ <h1 class="title">Module <code>continuous_delivery_scripts.plugins.python</code>
6363
6464
6565def _create_wheel() -> None:
66+ logger.info("Creating wheel")
6667 root = configuration.get_value(ConfigurationVariable.PROJECT_ROOT)
6768 with cd(root):
6869 check_call(
@@ -196,11 +197,14 @@ <h1 class="title">Module <code>continuous_delivery_scripts.plugins.python</code>
196197
197198 def can_get_project_metadata(self) -> bool:
198199 """States whether project metadata can be retrieved."""
199- return True
200+ # FIXME Comment out retrieving project metadata as deprecated
201+ # (SetuptoolsDeprecationWarning: License classifiers are deprecated)
202+ return False
200203
201204 def should_include_spdx_in_package(self) -> bool:
202205 """States whether the SPDX documents should be included in the package."""
203- return True
206+ # FIXME Comment out SPDX package as no longer working
207+ return False
204208
205209 def get_current_spdx_project(self) -> Optional[SpdxProject]:
206210 """Gets the current SPDX description."""
@@ -261,11 +265,14 @@ <h2 class="section-title" id="header-classes">Classes</h2>
261265
262266 def can_get_project_metadata(self) -> bool:
263267 """States whether project metadata can be retrieved."""
264- return True
268+ # FIXME Comment out retrieving project metadata as deprecated
269+ # (SetuptoolsDeprecationWarning: License classifiers are deprecated)
270+ return False
265271
266272 def should_include_spdx_in_package(self) -> bool:
267273 """States whether the SPDX documents should be included in the package."""
268- return True
274+ # FIXME Comment out SPDX package as no longer working
275+ return False
269276
270277 def get_current_spdx_project(self) -> Optional[SpdxProject]:
271278 """Gets the current SPDX description."""
0 commit comments