ultralytics-actions 0.0.51__py3-none-any.whl → 0.0.53__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- actions/__init__.py +1 -1
- actions/update_markdown_code_blocks.py +8 -4
- actions/utils/common_utils.py +1 -0
- {ultralytics_actions-0.0.51.dist-info → ultralytics_actions-0.0.53.dist-info}/METADATA +1 -1
- ultralytics_actions-0.0.53.dist-info/RECORD +15 -0
- {ultralytics_actions-0.0.51.dist-info → ultralytics_actions-0.0.53.dist-info}/WHEEL +1 -1
- ultralytics_actions-0.0.51.dist-info/RECORD +0 -15
- {ultralytics_actions-0.0.51.dist-info → ultralytics_actions-0.0.53.dist-info}/LICENSE +0 -0
- {ultralytics_actions-0.0.51.dist-info → ultralytics_actions-0.0.53.dist-info}/entry_points.txt +0 -0
- {ultralytics_actions-0.0.51.dist-info → ultralytics_actions-0.0.53.dist-info}/top_level.txt +0 -0
actions/__init__.py
CHANGED
@@ -48,15 +48,19 @@ def format_code_with_ruff(temp_dir):
|
|
48
48
|
|
49
49
|
try:
|
50
50
|
# Run ruff check with ignored rules:
|
51
|
-
#
|
52
|
-
#
|
51
|
+
# D101 Missing docstring in public class
|
52
|
+
# D103 Missing docstring in public function
|
53
|
+
# F821 Undefined name
|
54
|
+
# F841 Local variable is assigned to but never used
|
53
55
|
subprocess.run(
|
54
56
|
[
|
55
57
|
"ruff",
|
56
58
|
"check",
|
57
59
|
"--fix",
|
58
|
-
"--
|
59
|
-
"--
|
60
|
+
"--unsafe-fixes",
|
61
|
+
"--extend-select=I,D,UP",
|
62
|
+
"--target-version=py38",
|
63
|
+
"--ignore=D100,D101,D103,D104,D203,D205,D212,D213,D401,D406,D407,D413,F821,F841",
|
60
64
|
str(temp_dir),
|
61
65
|
],
|
62
66
|
check=True,
|
actions/utils/common_utils.py
CHANGED
@@ -51,6 +51,7 @@ URL_IGNORE_LIST = { # use a set (not frozenset) to update with possible private
|
|
51
51
|
"twitter.com",
|
52
52
|
"x.com",
|
53
53
|
"storage.googleapis.com", # private GCS buckets
|
54
|
+
"{", # possible Python fstring
|
54
55
|
}
|
55
56
|
URL_PATTERN = re.compile(
|
56
57
|
r"\[([^]]+)]\(([^)]+)\)" # Matches Markdown links [text](url)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: ultralytics-actions
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.53
|
4
4
|
Summary: Ultralytics Actions for GitHub automation and PR management.
|
5
5
|
Author-email: Glenn Jocher <glenn.jocher@ultralytics.com>
|
6
6
|
Maintainer-email: Ultralytics <hello@ultralytics.com>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
actions/__init__.py,sha256=1wutcv-hPDo79aD-g0H_oVcFw33Zibf4pghR7SveHPM,742
|
2
|
+
actions/first_interaction.py,sha256=1_WvQHCi5RWaSfyi49ClF2Zk_3CKGjFnZqz6FlxPRAc,17868
|
3
|
+
actions/summarize_pr.py,sha256=WHte6PNJbk_-T8fRDJERs6x3KL4Ah54oH0OH-tsqMUA,11092
|
4
|
+
actions/summarize_release.py,sha256=tov6qsYGC68lfobvkwVyoWZBGtJ598G0m097n4Ydzvo,8472
|
5
|
+
actions/update_markdown_code_blocks.py,sha256=ip-KRIfnTMDrs9IOqdSY7YXR4abNLsylGnXtrvoXjwY,6601
|
6
|
+
actions/utils/__init__.py,sha256=WStdEAYROVnF0nubEOmrFLrejkRiMXIefA5O1ckfcFs,476
|
7
|
+
actions/utils/common_utils.py,sha256=PZkK9Wc3od34J9VSw4ICWHhQQC033o3DCrCy0VIyZE4,6024
|
8
|
+
actions/utils/github_utils.py,sha256=0h0Hz2tgUta61Ymn9YggRXBZ7aZdF5krKnX7Tj9jqRU,7068
|
9
|
+
actions/utils/openai_utils.py,sha256=EQE2qJu8M5hfPMaN9GTZTSChLMyFUB7mG1fVcGrf2Kw,1968
|
10
|
+
ultralytics_actions-0.0.53.dist-info/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
11
|
+
ultralytics_actions-0.0.53.dist-info/METADATA,sha256=5CqGjUvF-m7vUFr0Fr_uc7snjwF4aq5iBfgrt4EanD8,10561
|
12
|
+
ultralytics_actions-0.0.53.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
13
|
+
ultralytics_actions-0.0.53.dist-info/entry_points.txt,sha256=GowvOFplj0C7JmsjbKcbpgLpdf2r921pcaOQkAHWZRA,378
|
14
|
+
ultralytics_actions-0.0.53.dist-info/top_level.txt,sha256=5apM5x80QlJcGbACn1v3fkmIuL1-XQCKcItJre7w7Tw,8
|
15
|
+
ultralytics_actions-0.0.53.dist-info/RECORD,,
|
@@ -1,15 +0,0 @@
|
|
1
|
-
actions/__init__.py,sha256=Wpe6Alkfxt7fw7AVISOls2yOgwhLRiE3V8nFIMgbK1I,742
|
2
|
-
actions/first_interaction.py,sha256=1_WvQHCi5RWaSfyi49ClF2Zk_3CKGjFnZqz6FlxPRAc,17868
|
3
|
-
actions/summarize_pr.py,sha256=WHte6PNJbk_-T8fRDJERs6x3KL4Ah54oH0OH-tsqMUA,11092
|
4
|
-
actions/summarize_release.py,sha256=tov6qsYGC68lfobvkwVyoWZBGtJ598G0m097n4Ydzvo,8472
|
5
|
-
actions/update_markdown_code_blocks.py,sha256=DN6rrDw2VHXUTetrrg1SHlYDco9iaGOfQBKFORqbCBI,6362
|
6
|
-
actions/utils/__init__.py,sha256=WStdEAYROVnF0nubEOmrFLrejkRiMXIefA5O1ckfcFs,476
|
7
|
-
actions/utils/common_utils.py,sha256=LJ79U5sQuTnVyhc22Bryb5YUBAWy13rGoHdfbaBQl3s,5988
|
8
|
-
actions/utils/github_utils.py,sha256=0h0Hz2tgUta61Ymn9YggRXBZ7aZdF5krKnX7Tj9jqRU,7068
|
9
|
-
actions/utils/openai_utils.py,sha256=EQE2qJu8M5hfPMaN9GTZTSChLMyFUB7mG1fVcGrf2Kw,1968
|
10
|
-
ultralytics_actions-0.0.51.dist-info/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
11
|
-
ultralytics_actions-0.0.51.dist-info/METADATA,sha256=JYk1R5WdGIqP0I90hUNvtN3KtpamyIToata5SACVSB8,10561
|
12
|
-
ultralytics_actions-0.0.51.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
13
|
-
ultralytics_actions-0.0.51.dist-info/entry_points.txt,sha256=GowvOFplj0C7JmsjbKcbpgLpdf2r921pcaOQkAHWZRA,378
|
14
|
-
ultralytics_actions-0.0.51.dist-info/top_level.txt,sha256=5apM5x80QlJcGbACn1v3fkmIuL1-XQCKcItJre7w7Tw,8
|
15
|
-
ultralytics_actions-0.0.51.dist-info/RECORD,,
|
File without changes
|
{ultralytics_actions-0.0.51.dist-info → ultralytics_actions-0.0.53.dist-info}/entry_points.txt
RENAMED
File without changes
|
File without changes
|