Skip to content

Commit 389bf5c

Browse files
committed
insert 'since' value 1.0.0
1 parent 38fa08c commit 389bf5c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/gardenlinux/build/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def parse_args():
2020
Parses arguments used for main()
2121
2222
:return: (object) Parsed argparse.ArgumentParser namespace
23-
:since: TODO
23+
:since: 1.0.0
2424
"""
2525

2626
parser = ArgumentParser(
@@ -46,7 +46,7 @@ def main():
4646
"""
4747
gl-gl-build main()
4848
49-
:since: TODO
49+
:since: 1.0.0
5050
"""
5151

5252
args = parse_args()

src/gardenlinux/build/exporter.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def _isElf(path: str | PathLike[str]) -> bool:
2626
:param path: Path to file
2727
2828
:return: (bool) If the file found at path is an ELF
29-
:since: TODO
29+
:since: 1.0.0
3030
"""
3131

3232
with open(path, "rb") as f:
@@ -44,7 +44,7 @@ def _getInterpreter(path: str | PathLike[str]) -> pathlib.Path:
4444
:param path: Path to file
4545
4646
:return: (str) Path of the interpreter
47-
:since: TODO
47+
:since: 1.0.0
4848
"""
4949

5050
with open(path, "rb") as f:
@@ -78,7 +78,7 @@ def _get_default_package_dir() -> pathlib.Path | None:
7878
Finds the default site-packages or dist-packages directory of the default python3 environment
7979
8080
:return: (str) Path to directory
81-
:since: TODO
81+
:since: 1.0.0
8282
"""
8383

8484
# Needs to escape the virtual environment python-gardenlinx-lib is running in
@@ -103,7 +103,7 @@ def export(
103103
:param output_dir: Path to output_dir
104104
:param package_dir: Path to package_dir
105105
106-
:since: TODO
106+
:since: 1.0.0
107107
"""
108108

109109
if not package_dir:

0 commit comments

Comments
 (0)