ScriptCollection 3.5.133__py3-none-any.whl → 3.5.134__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.
@@ -33,7 +33,7 @@ from .ProgramRunnerPopen import ProgramRunnerPopen
33
33
  from .ProgramRunnerEpew import ProgramRunnerEpew, CustomEpewArgument
34
34
  from .SCLog import SCLog, LogLevel
35
35
 
36
- version = "3.5.133"
36
+ version = "3.5.134"
37
37
  __version__ = version
38
38
 
39
39
 
@@ -3151,6 +3151,8 @@ class TasksForCommonProjectStructure:
3151
3151
  for codeunit in codeunits:
3152
3152
  codeunit_file = os.path.join(repository_folder, codeunit, f"{codeunit}.codeunit.xml")
3153
3153
  codeunit_has_updatable_dependencies = self.codeunit_has_updatable_dependencies(codeunit_file)
3154
+ codeunit_folder: str = os.path.join(repository_folder, codeunit)
3155
+ self.build_codeunit(codeunit_folder, verbosity, "QualityCheck", None, False, None, False, [])
3154
3156
  if codeunit_has_updatable_dependencies:
3155
3157
  codeunit_folder = os.path.join(repository_folder, codeunit)
3156
3158
  update_dependencies_script_folder = os.path.join(codeunit_folder, "Other")
@@ -3160,8 +3162,8 @@ class TasksForCommonProjectStructure:
3160
3162
  version_of_project = self.get_version_of_project(repository_folder)
3161
3163
  self.__add_changelog_file(repository_folder, version_of_project)
3162
3164
  GeneralUtilities.write_message_to_stdout(f"Updated dependencies in codeunit {codeunit}.")
3163
- self.build_codeunits(repository_folder, verbosity, "QualityCheck", None, False, None, [], False, "Build codeunits due to updated dependencies")
3164
3165
 
3166
+ self.build_codeunits(repository_folder, verbosity, "QualityCheck", None, False, None, [], False, "Build codeunits due to updated dependencies")
3165
3167
  self.__sc.git_commit(repository_folder, "Updated dependencies")
3166
3168
 
3167
3169
  class GenericPrepareNewReleaseArguments:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ScriptCollection
3
- Version: 3.5.133
3
+ Version: 3.5.134
4
4
  Summary: The ScriptCollection is the place for reusable scripts.
5
5
  Home-page: https://github.com/anionDev/ScriptCollection
6
6
  Author: Marius Göcke
@@ -7,11 +7,11 @@ ScriptCollection/ProgramRunnerBase.py,sha256=2kMIAqdc65UjBAddOZkzy_aFx9h5roZ5a4b
7
7
  ScriptCollection/ProgramRunnerEpew.py,sha256=4pjEd0r9Fcz3TTDv0MdTSd5KkigYXcWUVI1X43regfU,6477
8
8
  ScriptCollection/ProgramRunnerPopen.py,sha256=BPY7-ZMIlqT7JOKz8qlB5c0laF2Js-ijzqk09GxZC48,3821
9
9
  ScriptCollection/SCLog.py,sha256=Dd2P8vH2PA830wAv6bchlMHHdGE_7At-F4WQY5w4XdA,4016
10
- ScriptCollection/ScriptCollectionCore.py,sha256=sW_s87osRvqjyXNpEML5EU_DfVJUXx17n3WD08btME8,128945
11
- ScriptCollection/TasksForCommonProjectStructure.py,sha256=jb7Nlejn1WDw58gV5VV48KdLK2Z58yPId7WZkwWuz4o,235683
10
+ ScriptCollection/ScriptCollectionCore.py,sha256=Q-Pww8KRGxQ53nx0eBuB5K6QbKpKez6PHdMioJBsawg,128945
11
+ ScriptCollection/TasksForCommonProjectStructure.py,sha256=b3bb3kSHSce3HgaitDyuZdQ82KroU1HFryANBycKo0I,235854
12
12
  ScriptCollection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
- scriptcollection-3.5.133.dist-info/METADATA,sha256=1xLr28zJBfGx2HTwxApOxUbjuoMjlc-HK7U1IlKhD0w,7694
14
- scriptcollection-3.5.133.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
15
- scriptcollection-3.5.133.dist-info/entry_points.txt,sha256=3qMbfZEMhc_VTJj-bcLwB8AWcn9iXSB3l0AWpuu52Bs,3689
16
- scriptcollection-3.5.133.dist-info/top_level.txt,sha256=hY2hOVH0V0Ce51WB76zKkIWTUNwMUdHo4XDkR2vYVwg,17
17
- scriptcollection-3.5.133.dist-info/RECORD,,
13
+ scriptcollection-3.5.134.dist-info/METADATA,sha256=PoP2X3FAK5g6nyNdRuUXw9yXWnKE3qnRPJtwFGk8Onc,7694
14
+ scriptcollection-3.5.134.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
15
+ scriptcollection-3.5.134.dist-info/entry_points.txt,sha256=3qMbfZEMhc_VTJj-bcLwB8AWcn9iXSB3l0AWpuu52Bs,3689
16
+ scriptcollection-3.5.134.dist-info/top_level.txt,sha256=hY2hOVH0V0Ce51WB76zKkIWTUNwMUdHo4XDkR2vYVwg,17
17
+ scriptcollection-3.5.134.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.8.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5