Skip to content

Commit e0bfe3d

Browse files
fix: version back compat
1 parent 5809d47 commit e0bfe3d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/versioning.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# SPDX-License-Identifier: MIT
22

3-
import copy
43
from typing import Any, Optional
54

65
import packaging.version
@@ -16,7 +15,7 @@ def template_fields(
1615
params: dict[str, Any],
1716
) -> dict[str, Any]:
1817
"""Implements the ``"basic"`` ``template-fields`` method"""
19-
params = copy.deepcopy(params)
18+
# params = copy.deepcopy(params)
2019
parsed_version = packaging.version.parse(version)
2120
fields: dict[str, Any] = {}
2221
if description is not None:

0 commit comments

Comments
 (0)