Skip to content

Commit 9fce459

Browse files
committed
⚙️ reformatted and added setuptools to the list of dependencies
1 parent b3e1bf6 commit 9fce459

35 files changed

Lines changed: 37 additions & 1 deletion

.secrets.baseline

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,5 +166,5 @@
166166
}
167167
]
168168
},
169-
"generated_at": "2026-04-02T08:50:35Z"
169+
"generated_at": "2026-04-02T09:12:28Z"
170170
}

continuous_delivery_scripts/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
# SPDX-License-Identifier: Apache-2.0
44
#
55
"""Scripts and utilities used by the CI pipeline."""
6+
67
from continuous_delivery_scripts._version import __version__ # noqa: F401

continuous_delivery_scripts/_version.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
1111
This file is autogenerated, do not modify by hand.
1212
"""
13+
1314
__version__ = "3.2.6"
1415
COMMIT = "39ef9fc9203e6633b9e8df6ce7f7ee0067de27ff"
1516
MAJOR = 3

continuous_delivery_scripts/assert_news.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# SPDX-License-Identifier: Apache-2.0
44
#
55
"""Checks if valid news files are created for changes in the project."""
6+
67
import argparse
78
import logging
89
import pathlib

continuous_delivery_scripts/create_news_file.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
Usage:
88
create-news-file "Fixed a bug" --type bugfix
99
"""
10+
1011
import argparse
1112
import logging
1213

continuous_delivery_scripts/generate_docs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# SPDX-License-Identifier: Apache-2.0
44
#
55
"""Generates documentation."""
6+
67
import argparse
78
import logging
89
import os

continuous_delivery_scripts/generate_news.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# SPDX-License-Identifier: Apache-2.0
44
#
55
"""Handles usage of towncrier for automated changelog generation and pyautoversion for versioning."""
6+
67
import sys
78

89
import argparse

continuous_delivery_scripts/get_config.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# SPDX-License-Identifier: Apache-2.0
44
#
55
"""Retrieves configuration values."""
6+
67
import argparse
78
import sys
89
import logging

continuous_delivery_scripts/get_version.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# SPDX-License-Identifier: Apache-2.0
44
#
55
"""Determine the project new version."""
6+
67
import sys
78

89
from typing import Optional

continuous_delivery_scripts/license_files.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
This is to comply with OpenChain certification;
88
https://github.com/OpenChain-Project/Curriculum/blob/master/guides/reusing_software.md#2-include-a-copyright-notice-and-license-in-each-file
99
"""
10+
1011
import argparse
1112
import logging
1213
import subprocess

0 commit comments

Comments
 (0)