fmu-manipulation-toolbox 1.8.4__py3-none-any.whl → 1.8.4.1rc1__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.
@@ -1 +1 @@
1
- 'V1.8.4'
1
+ 'V1.8.4.1-rc1'
@@ -146,7 +146,7 @@ class ContainerPort:
146
146
  return f"Port {self.fmu.name}/{self.port.name}"
147
147
 
148
148
  def __hash__(self):
149
- return hash(f"{self}")
149
+ return hash(str(self))
150
150
 
151
151
  def __eq__(self, other):
152
152
  return str(self) == str(other)
@@ -266,7 +266,7 @@ class FMUContainer:
266
266
 
267
267
  try:
268
268
  fmu = EmbeddedFMU(self.fmu_directory / fmu_filename)
269
- self.involved_fmu[fmu_filename] = fmu
269
+ self.involved_fmu[fmu.name] = fmu
270
270
  self.execution_order.append(fmu)
271
271
  if not fmu.fmi_version == "2.0":
272
272
  raise FMUContainerError("Only FMI-2.0 is supported by FMUContainer")
@@ -727,9 +727,9 @@ class FMUContainer:
727
727
  binary_directory.mkdir(exist_ok=True)
728
728
  shutil.copy(library_filename, binary_directory / f"{self.identifier}.dll")
729
729
 
730
- for fmu in self.involved_fmu.values():
730
+ for i, fmu in enumerate(self.involved_fmu.values()):
731
731
  shutil.copytree(self.long_path(fmu.fmu.tmp_directory),
732
- self.long_path(resources_directory / fmu.name), dirs_exist_ok=True)
732
+ self.long_path(resources_directory / f"{i:02x}"), dirs_exist_ok=True)
733
733
  return resources_directory
734
734
 
735
735
  def make_fmu_package(self, base_directory: Path, fmu_filename: Path):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fmu_manipulation_toolbox
3
- Version: 1.8.4
3
+ Version: 1.8.4.1rc1
4
4
  Summary: FMU Manipulation Toolbox is a python application for modifying Functional Mock-up Units (FMUs) without recompilation or bundling them into FMU Containers
5
5
  Home-page: https://github.com/grouperenault/fmu_manipulation_toolbox/
6
6
  Author: Nicolas.LAURENT@Renault.com
@@ -1,10 +1,10 @@
1
1
  fmu_manipulation_toolbox/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
2
2
  fmu_manipulation_toolbox/__main__.py,sha256=mAzrtkil506DS0F3g3CEbHdtZsZotzntcNhIn_lNJkw,344
3
- fmu_manipulation_toolbox/__version__.py,sha256=YDUDqL5-wXrlF1Zz3Z4U3vhK1iG25k_GxFgG7k1qup8,9
3
+ fmu_manipulation_toolbox/__version__.py,sha256=XrkszsZnuDt-3YM90TmysYNUUQWVU2E0oQHwlYer6AU,15
4
4
  fmu_manipulation_toolbox/assembly.py,sha256=p8c8l2BLexns21ADr8WhmedLO015Oma1tOHEYZwvgpk,25900
5
5
  fmu_manipulation_toolbox/checker.py,sha256=lE2MpH4BAKCDjUvbr06N56u7ao8hWXaJgMKaLvmhFTQ,2272
6
6
  fmu_manipulation_toolbox/cli.py,sha256=2p5T1qp7kTcMlScwmvXyUfEmAIGSJsld96ObY216QMA,10616
7
- fmu_manipulation_toolbox/fmu_container.py,sha256=iBNWt-pFZLAJUBthggDY6PsXiSrypCPFhcSH7jy0XZY,31977
7
+ fmu_manipulation_toolbox/fmu_container.py,sha256=ewJlriNrrIF-5lG1VxT-beTZIhT5d45I2Wro9HLVMP4,31989
8
8
  fmu_manipulation_toolbox/fmu_operations.py,sha256=zxsbwnfctmTv-wU37GiiaX3CFM7LmvXAVDCNpdVyRZo,15886
9
9
  fmu_manipulation_toolbox/gui.py,sha256=3y_3CjPr-R-Oa5DTCm0LLnOLVG0_IFjadpNjACAmayQ,29222
10
10
  fmu_manipulation_toolbox/gui_style.py,sha256=uzEruJumnC5Vf2cfHXVa_c-SHAQoTvDWemro3-b9Mpc,6492
@@ -37,16 +37,16 @@ fmu_manipulation_toolbox/resources/fmi-2.0/fmi2VariableDependency.xsd,sha256=Tc9
37
37
  fmu_manipulation_toolbox/resources/linux32/client_sm.so,sha256=xVdY2zy13pa2DcvFiweSNpp7E6DiONqeoBdlcJHrW_k,35940
38
38
  fmu_manipulation_toolbox/resources/linux32/server_sm,sha256=1TLGqNPyM5UVOrCfzNqWyF6ClLksY3EiY3CSsrnp6c0,22836
39
39
  fmu_manipulation_toolbox/resources/linux64/client_sm.so,sha256=EhY1XHo1YcQn6yqZ7wk5okqtZyp0MrcCsGcudqE-aIM,37000
40
- fmu_manipulation_toolbox/resources/linux64/container.so,sha256=iqBgsgrNHaYPshxfDVJXqa6CHh2-o6_FPlVczpoXbLU,50152
40
+ fmu_manipulation_toolbox/resources/linux64/container.so,sha256=9syF2N4fwKxBydyEgsGJeH4zZvJr16LunGGqqI_X_eY,50208
41
41
  fmu_manipulation_toolbox/resources/linux64/server_sm,sha256=ulfoPvmaYe9nInYcVEyj7mD9zDzGk56OUoWx1mPKLiE,22768
42
- fmu_manipulation_toolbox/resources/win32/client_sm.dll,sha256=64ucQ0kJov-cbmTRGll4eS6sk9kDaDCLAgSISc46SFo,17920
43
- fmu_manipulation_toolbox/resources/win32/server_sm.exe,sha256=PsYfY4fUckDxTb-rZmXh9K8YZKLMnP645pWAghM1kkk,15872
44
- fmu_manipulation_toolbox/resources/win64/client_sm.dll,sha256=XbG9Ht2PX-8jqWIeqqH6sNM0VNRpHZn5_8H-QpYNcXA,22016
45
- fmu_manipulation_toolbox/resources/win64/container.dll,sha256=eFoHSdJJBlzX0Sc33EXQx2EwHA_d9IbNsdJkG-6QTYk,39936
46
- fmu_manipulation_toolbox/resources/win64/server_sm.exe,sha256=cwOIN4cDRqpZIpqFx3nzX1ejZZSvo0wqrslZN3lxdfU,19456
47
- fmu_manipulation_toolbox-1.8.4.dist-info/licenses/LICENSE.txt,sha256=c_862mzyk6ownO3Gt6cVs0-53IXLi_-ZEQFNDVabESw,1285
48
- fmu_manipulation_toolbox-1.8.4.dist-info/METADATA,sha256=85DFBYMfzaLi3mux3i2kYxr5EUMhLaT3eaEI5b98-wg,1155
49
- fmu_manipulation_toolbox-1.8.4.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
50
- fmu_manipulation_toolbox-1.8.4.dist-info/entry_points.txt,sha256=jCPLMBdS-eOvmRfDv7n0wHZSbJHccHviW03mz5vwO-Q,124
51
- fmu_manipulation_toolbox-1.8.4.dist-info/top_level.txt,sha256=9D_h-5BMjSqf9z-XFkbJL_bMppR2XNYW3WNuPkXou0k,25
52
- fmu_manipulation_toolbox-1.8.4.dist-info/RECORD,,
42
+ fmu_manipulation_toolbox/resources/win32/client_sm.dll,sha256=4C1mv7J9ieyddqb5KbTIXnBHY0-Q70rSO0CmadhuHGo,17920
43
+ fmu_manipulation_toolbox/resources/win32/server_sm.exe,sha256=SlTJ4N_zWRLdhzIn0RYdE_AVVLk1b5b0tPPwBVL8tEM,15872
44
+ fmu_manipulation_toolbox/resources/win64/client_sm.dll,sha256=Lwjn3c40gC2OhHku9y2u6UzDtkbpOOC5WTNfJ_P41S4,22016
45
+ fmu_manipulation_toolbox/resources/win64/container.dll,sha256=y2XBvc2DeFYAjMjInw13XEmHMG99ChQvHzlDsMKMikM,39936
46
+ fmu_manipulation_toolbox/resources/win64/server_sm.exe,sha256=r4M7TnKPVtLM7GF5NjfEjMtEIsnN08DtGzzahgh4fLA,19456
47
+ fmu_manipulation_toolbox-1.8.4.1rc1.dist-info/licenses/LICENSE.txt,sha256=c_862mzyk6ownO3Gt6cVs0-53IXLi_-ZEQFNDVabESw,1285
48
+ fmu_manipulation_toolbox-1.8.4.1rc1.dist-info/METADATA,sha256=dfRjLdUUb76vXMRIMA1uAud1eyDb7X48BoNW_s17ZxY,1160
49
+ fmu_manipulation_toolbox-1.8.4.1rc1.dist-info/WHEEL,sha256=ooBFpIzZCPdw3uqIQsOo4qqbA4ZRPxHnOH7peeONza0,91
50
+ fmu_manipulation_toolbox-1.8.4.1rc1.dist-info/entry_points.txt,sha256=jCPLMBdS-eOvmRfDv7n0wHZSbJHccHviW03mz5vwO-Q,124
51
+ fmu_manipulation_toolbox-1.8.4.1rc1.dist-info/top_level.txt,sha256=9D_h-5BMjSqf9z-XFkbJL_bMppR2XNYW3WNuPkXou0k,25
52
+ fmu_manipulation_toolbox-1.8.4.1rc1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (78.1.0)
2
+ Generator: setuptools (80.0.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5