@@ -63,6 +63,7 @@ <h1 class="title">Module <code>continuous_delivery_scripts.plugins.python</code>
63
63
64
64
65
65
def _create_wheel() -> None:
66
+ logger.info("Creating wheel")
66
67
root = configuration.get_value(ConfigurationVariable.PROJECT_ROOT)
67
68
with cd(root):
68
69
check_call(
@@ -196,11 +197,14 @@ <h1 class="title">Module <code>continuous_delivery_scripts.plugins.python</code>
196
197
197
198
def can_get_project_metadata(self) -> bool:
198
199
"""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
200
203
201
204
def should_include_spdx_in_package(self) -> bool:
202
205
"""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
204
208
205
209
def get_current_spdx_project(self) -> Optional[SpdxProject]:
206
210
"""Gets the current SPDX description."""
@@ -261,11 +265,14 @@ <h2 class="section-title" id="header-classes">Classes</h2>
261
265
262
266
def can_get_project_metadata(self) -> bool:
263
267
"""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
265
271
266
272
def should_include_spdx_in_package(self) -> bool:
267
273
"""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
269
276
270
277
def get_current_spdx_project(self) -> Optional[SpdxProject]:
271
278
"""Gets the current SPDX description."""
0 commit comments