Add new declare method (#461)

For manually declare (or overwrite) missing or erroneous versions.
This commit is contained in:
Marc Wrobel
2025-07-07 22:48:15 +02:00
parent ee297fd97d
commit 08808282dd
5 changed files with 21 additions and 41 deletions

View File

@@ -30,11 +30,7 @@ with ProductData(config.product) as product_data:
except ValueError:
deprecation_date = None
if identifier == "nodejs4.3-edge":
# there is a mistake in the data: block function update date cannot be before the deprecation date
block_function_update_str = "2020-04-30"
else:
block_function_update_str = cells[block_function_update_index].get_text().strip()
block_function_update_str = cells[block_function_update_index].get_text().strip()
try:
block_function_update = dates.parse_date(block_function_update_str)
except ValueError: