openepd 6.30.0__py3-none-any.whl → 6.31.1__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.
openepd/__version__.py CHANGED
@@ -13,4 +13,4 @@
13
13
  # See the License for the specific language governing permissions and
14
14
  # limitations under the License.
15
15
  #
16
- VERSION = "6.30.0"
16
+ VERSION = "6.31.1"
@@ -60,7 +60,7 @@ from openepd.model.specs.singular.cladding import CladdingV1
60
60
  from openepd.model.specs.singular.cmu import CMUV1
61
61
  from openepd.model.specs.singular.concrete import ConcreteV1
62
62
  from openepd.model.specs.singular.conveying_equipment import ConveyingEquipmentV1
63
- from openepd.model.specs.singular.electrical import ElectricalV1
63
+ from openepd.model.specs.singular.electrical import ElectricalV1, OtherElectricalEquipmentV1
64
64
  from openepd.model.specs.singular.electrical_transmission_and_distribution_equipment import (
65
65
  ElectricalTransmissionAndDistributionEquipmentV1,
66
66
  )
@@ -76,7 +76,6 @@ from openepd.model.specs.singular.mechanical import MechanicalV1
76
76
  from openepd.model.specs.singular.mechanical_insulation import MechanicalInsulationV1
77
77
  from openepd.model.specs.singular.network_infrastructure import NetworkInfrastructureV1
78
78
  from openepd.model.specs.singular.openings import OpeningsV1
79
- from openepd.model.specs.singular.other_electrical_equipment import OtherElectricalEquipmentV1
80
79
  from openepd.model.specs.singular.other_materials import OtherMaterialsV1
81
80
  from openepd.model.specs.singular.plumbing import PlumbingV1
82
81
  from openepd.model.specs.singular.precast_concrete import PrecastConcreteV1
@@ -18,6 +18,7 @@ __all__ = [
18
18
  ]
19
19
 
20
20
 
21
+ from openepd.compat.pydantic import pyd
21
22
  from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
22
23
 
23
24
  from .accessories import AccessoriesRangeV1
@@ -30,7 +31,7 @@ from .cladding import CladdingRangeV1
30
31
  from .cmu import CMURangeV1
31
32
  from .concrete import ConcreteRangeV1
32
33
  from .conveying_equipment import ConveyingEquipmentRangeV1
33
- from .electrical import ElectricalRangeV1
34
+ from .electrical import ElectricalRangeV1, OtherElectricalEquipmentRangeV1
34
35
  from .electrical_transmission_and_distribution_equipment import ElectricalTransmissionAndDistributionEquipmentRangeV1
35
36
  from .electricity import ElectricityRangeV1
36
37
  from .exterior_improvements import ExteriorImprovementsRangeV1
@@ -53,7 +54,6 @@ from .non_construction import (
53
54
  VehiclesRangeV1,
54
55
  )
55
56
  from .openings import OpeningsRangeV1
56
- from .other_electrical_equipment import OtherElectricalEquipmentRangeV1
57
57
  from .other_materials import FoodBeverageRangeV1, OtherMaterialsRangeV1, TextileProductsRangeV1
58
58
  from .plumbing import PlumbingRangeV1
59
59
  from .precast_concrete import PrecastConcreteRangeV1
@@ -106,7 +106,6 @@ class SpecsRange(BaseOpenEpdHierarchicalSpec):
106
106
  Electricity: ElectricityRangeV1 | None = None
107
107
  Grouting: GroutingRangeV1 | None = None
108
108
  MechanicalInsulation: MechanicalInsulationRangeV1 | None = None
109
- OtherElectricalEquipment: OtherElectricalEquipmentRangeV1 | None = None
110
109
  WoodJoists: WoodJoistsRangeV1 | None = None
111
110
  ExteriorImprovements: ExteriorImprovementsRangeV1 | None = None
112
111
  TextileProducts: TextileProductsRangeV1 | None = None
@@ -117,3 +116,11 @@ class SpecsRange(BaseOpenEpdHierarchicalSpec):
117
116
  Services: ServicesRangeV1 | None = None
118
117
  ConsumerGoods: ConsumerGoodsRangeV1 | None = None
119
118
  FoodBeverage: FoodBeverageRangeV1 | None = None
119
+
120
+ OtherElectricalEquipment: OtherElectricalEquipmentRangeV1 | None = pyd.Field(
121
+ default=None,
122
+ deprecated="SpecsRange.OtherElectricalEquipment is deprecated. Use ElectricalRangeV1.OtherElectricalEquipment instead.",
123
+ )
124
+ """
125
+ SpecsRange.OtherElectricalEquipment is deprecated. Use ElectricalRangeV1.OtherElectricalEquipment instead.
126
+ """
@@ -33,6 +33,7 @@ __all__ = (
33
33
  "LowVoltBusesRangeV1",
34
34
  "LowVoltageElectricalDistributionRangeV1",
35
35
  "MedVoltBusesRangeV1",
36
+ "OtherElectricalEquipmentRangeV1",
36
37
  "OtherElectricalPowerStorageRangeV1",
37
38
  "OtherGenerationRangeV1",
38
39
  "OutdoorLightingRangeV1",
@@ -406,6 +407,16 @@ class ElectricalConduitRangeV1(BaseOpenEpdHierarchicalSpec):
406
407
  material: list[ConduitMaterial] | None = None
407
408
 
408
409
 
410
+ class OtherElectricalEquipmentRangeV1(BaseOpenEpdHierarchicalSpec):
411
+ """
412
+ Other Electrical Equipment.
413
+
414
+ Range version.
415
+ """
416
+
417
+ _EXT_VERSION = "1.0"
418
+
419
+
409
420
  class ElectricalRangeV1(BaseOpenEpdHierarchicalSpec):
410
421
  """
411
422
  Electric power and equipment.
@@ -413,7 +424,7 @@ class ElectricalRangeV1(BaseOpenEpdHierarchicalSpec):
413
424
  Range version.
414
425
  """
415
426
 
416
- _EXT_VERSION = "1.1"
427
+ _EXT_VERSION = "1.2"
417
428
 
418
429
  ElectricalPowerStorage: ElectricalPowerStorageRangeV1 | None = None
419
430
  LowVoltageElectricalDistribution: LowVoltageElectricalDistributionRangeV1 | None = None
@@ -421,3 +432,4 @@ class ElectricalRangeV1(BaseOpenEpdHierarchicalSpec):
421
432
  ElectricPower: ElectricPowerRangeV1 | None = None
422
433
  Lighting: LightingRangeV1 | None = None
423
434
  ElectricalConduit: ElectricalConduitRangeV1 | None = None
435
+ OtherElectricalEquipment: OtherElectricalEquipmentRangeV1 | None = None
@@ -13,19 +13,6 @@
13
13
  # See the License for the specific language governing permissions and
14
14
  # limitations under the License.
15
15
  #
16
- __all__ = ("OtherElectricalEquipmentRangeV1",)
17
16
 
18
- # NB! This is a generated code. Do not edit it manually. Please see src/openepd/model/specs/README.md
19
-
20
-
21
- from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
22
-
23
-
24
- class OtherElectricalEquipmentRangeV1(BaseOpenEpdHierarchicalSpec):
25
- """
26
- Other Electrical Equipment.
27
-
28
- Range version.
29
- """
30
-
31
- _EXT_VERSION = "1.0"
17
+ # Deprecated import: This import is kept for backward compatibility and should be removed in the future.
18
+ from .electrical import OtherElectricalEquipmentRangeV1 # noqa: F401
@@ -37,7 +37,7 @@ from openepd.model.specs.singular.conveying_equipment import ConveyingEquipmentV
37
37
  from openepd.model.specs.singular.deprecated import BaseCompatibilitySpec, get_safely, set_safely
38
38
  from openepd.model.specs.singular.deprecated.concrete import ConcreteOldSpec
39
39
  from openepd.model.specs.singular.deprecated.steel import SteelOldSpec
40
- from openepd.model.specs.singular.electrical import ElectricalV1
40
+ from openepd.model.specs.singular.electrical import ElectricalV1, OtherElectricalEquipmentV1
41
41
  from openepd.model.specs.singular.electrical_transmission_and_distribution_equipment import (
42
42
  ElectricalTransmissionAndDistributionEquipmentV1,
43
43
  )
@@ -62,7 +62,6 @@ from openepd.model.specs.singular.non_construction import (
62
62
  VehiclesV1,
63
63
  )
64
64
  from openepd.model.specs.singular.openings import OpeningsV1
65
- from openepd.model.specs.singular.other_electrical_equipment import OtherElectricalEquipmentV1
66
65
  from openepd.model.specs.singular.other_materials import FoodBeverageV1, OtherMaterialsV1, TextileProductsV1
67
66
  from openepd.model.specs.singular.plumbing import PlumbingV1
68
67
  from openepd.model.specs.singular.precast_concrete import PrecastConcreteV1
@@ -116,7 +115,6 @@ class Specs(BaseOpenEpdHierarchicalSpec):
116
115
  Electricity: ElectricityV1 | None = None
117
116
  Grouting: GroutingV1 | None = None
118
117
  MechanicalInsulation: MechanicalInsulationV1 | None = None
119
- OtherElectricalEquipment: OtherElectricalEquipmentV1 | None = None
120
118
  WoodJoists: WoodJoistsV1 | None = None
121
119
  ExteriorImprovements: ExteriorImprovementsV1 | None = None
122
120
  TextileProducts: TextileProductsV1 | None = None
@@ -128,6 +126,14 @@ class Specs(BaseOpenEpdHierarchicalSpec):
128
126
  ConsumerGoods: ConsumerGoodsV1 | None = None
129
127
  FoodBeverage: FoodBeverageV1 | None = None
130
128
 
129
+ OtherElectricalEquipment: OtherElectricalEquipmentV1 | None = pyd.Field(
130
+ default=None,
131
+ deprecated="Specs.OtherElectricalEquipment is deprecated. Use ElectricalV1.OtherElectricalEquipment instead.",
132
+ )
133
+ """
134
+ Specs.OtherElectricalEquipment is deprecated. Use ElectricalV1.OtherElectricalEquipment instead.
135
+ """
136
+
131
137
  # historical backward-compatible specs
132
138
  concrete: ConcreteOldSpec | None = None
133
139
  steel: SteelOldSpec | None = None
@@ -13,6 +13,39 @@
13
13
  # See the License for the specific language governing permissions and
14
14
  # limitations under the License.
15
15
  #
16
+ __all__ = (
17
+ "BatteriesV1",
18
+ "CableTraysV1",
19
+ "ElectricPowerV1",
20
+ "ElectricalBusesV1",
21
+ "ElectricalConduitV1",
22
+ "ElectricalGenerationEquipmentV1",
23
+ "ElectricalPowerStorageV1",
24
+ "ElectricalV1",
25
+ "ElectricityFromPowerGridV1",
26
+ "ElectricityFromSpecificGeneratorV1",
27
+ "FloorEquipmentBoxesV1",
28
+ "FueledElectricalGeneratorsV1",
29
+ "LightbulbsV1",
30
+ "LightingControlsV1",
31
+ "LightingFixturesV1",
32
+ "LightingV1",
33
+ "LowVoltBusesV1",
34
+ "LowVoltageElectricalDistributionV1",
35
+ "MedVoltBusesV1",
36
+ "OtherElectricalEquipmentV1",
37
+ "OtherElectricalPowerStorageV1",
38
+ "OtherGenerationV1",
39
+ "OutdoorLightingV1",
40
+ "PhotovoltaicsV1",
41
+ "PowerDistributionUnitsV1",
42
+ "PowerPurchaseAgreementsV1",
43
+ "RacewaysV1",
44
+ "SpecialtyLightingV1",
45
+ "TaskLightingV1",
46
+ "WindTurbinesV1",
47
+ )
48
+
16
49
  from openepd.compat.pydantic import pyd
17
50
  from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
18
51
  from openepd.model.specs.enums import CableTraysMaterial, EnergySource, RacewaysMaterial
@@ -298,10 +331,16 @@ class ElectricalConduitV1(BaseOpenEpdHierarchicalSpec, ConduitMixin):
298
331
  _EXT_VERSION = "1.1"
299
332
 
300
333
 
334
+ class OtherElectricalEquipmentV1(BaseOpenEpdHierarchicalSpec):
335
+ """Other Electrical Equipment."""
336
+
337
+ _EXT_VERSION = "1.0"
338
+
339
+
301
340
  class ElectricalV1(BaseOpenEpdHierarchicalSpec):
302
341
  """Electric power and equipment."""
303
342
 
304
- _EXT_VERSION = "1.1"
343
+ _EXT_VERSION = "1.2"
305
344
 
306
345
  # Nested specs:
307
346
  ElectricalPowerStorage: ElectricalPowerStorageV1 | None = None
@@ -310,3 +349,4 @@ class ElectricalV1(BaseOpenEpdHierarchicalSpec):
310
349
  ElectricPower: ElectricPowerV1 | None = None
311
350
  Lighting: LightingV1 | None = None
312
351
  ElectricalConduit: ElectricalConduitV1 | None = None
352
+ OtherElectricalEquipment: OtherElectricalEquipmentV1 | None = None
@@ -13,10 +13,6 @@
13
13
  # See the License for the specific language governing permissions and
14
14
  # limitations under the License.
15
15
  #
16
- from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
17
16
 
18
-
19
- class OtherElectricalEquipmentV1(BaseOpenEpdHierarchicalSpec):
20
- """Other Electrical Equipment."""
21
-
22
- _EXT_VERSION = "1.0"
17
+ # Deprecated import: This import is kept for backward compatibility and should be removed in the future.
18
+ from .electrical import OtherElectricalEquipmentV1 # noqa: F401
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: openepd
3
- Version: 6.30.0
3
+ Version: 6.31.1
4
4
  Summary: Python library to work with OpenEPD format
5
5
  License: Apache-2.0
6
6
  Author: C-Change Labs
@@ -1,5 +1,5 @@
1
1
  openepd/__init__.py,sha256=fhxfEyEurLvSfvQci-vb3njzl_lvhcLXiZrecCOaMU8,794
2
- openepd/__version__.py,sha256=enRsBfml2NzBafBOFfvlU90PUt0sxIWFr532d5FuVvU,639
2
+ openepd/__version__.py,sha256=NgJSN9dQLekpi1WW1Gh2L5KcdSamZVPj3Hxrdpg45Fs,639
3
3
  openepd/api/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
4
4
  openepd/api/average_dataset/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
5
5
  openepd/api/average_dataset/generic_estimate_sync_api.py,sha256=_eZt_jGVL1a3p9cr-EF39Ve9Vl5sB8zwzTc_slnRL50,7975
@@ -57,12 +57,12 @@ openepd/model/lcia.py,sha256=PdaSZz02PMBJl_t2B_dmkcbzIFjA7iACrWj1fllHfw0,26230
57
57
  openepd/model/org.py,sha256=zxBt-c2f1nhJUqygUzhsq6AEEwfNiYGquhgYvcUfvSo,7771
58
58
  openepd/model/pcr.py,sha256=7nf6ATofdrlPt81vdU6p0E8n_ftFEuCEIKxtYlFwclw,5476
59
59
  openepd/model/specs/README.md,sha256=UGhSiFJ9hOxT1mZl-5ZrhkOrPKf1W_gcu5CI9hzV7LU,2430
60
- openepd/model/specs/__init__.py,sha256=toVWd8_jxmAf7gRwpoXQpLfZW6Cl-NwveoduMXhECms,3903
60
+ openepd/model/specs/__init__.py,sha256=YbyiLnQRQIX9mEdfQRVP3Rp1q3iNwujQMBbDK2-CYdM,3836
61
61
  openepd/model/specs/asphalt.py,sha256=eHhcITbBrNYR5N6x4Q2BxpsR64BR9OkjJ4bvPRYOqMg,3411
62
62
  openepd/model/specs/base.py,sha256=10IDyRFKQgFnyIPSqpeayP8Og1BDgs1EepXX5dyCMM4,2674
63
63
  openepd/model/specs/concrete.py,sha256=D9jbhZDtTXNBoAgljQBPxsmGsMvLSIAP5H53ZYiXcGI,5336
64
64
  openepd/model/specs/enums.py,sha256=6vNIDqt2kI-JKp9EBP9vhis935tfAS31znZ7v7LHb8s,63083
65
- openepd/model/specs/range/__init__.py,sha256=MlECuiVIB3QBrcc-J_iQgqztD-Kp9mMFiacQoDzKliA,5202
65
+ openepd/model/specs/range/__init__.py,sha256=iYCY7RWHntcuE_AbVunU7jft_EFDG0tqvBiITndGRhs,5494
66
66
  openepd/model/specs/range/accessories.py,sha256=hZYz8mvAqrfLFiOIZ9qQZ59zmEiu0xE61Ko9cQ7NSKU,2498
67
67
  openepd/model/specs/range/aggregates.py,sha256=udVbsYc1Lyrd6a4YZBGNDQ3sBi-L3WLub_e1ecq7U-Q,2549
68
68
  openepd/model/specs/range/aluminium.py,sha256=Z3laZKXoPtfmOLLr4c4uf7Z-8TNmfz51X-_yd7GQIj8,2745
@@ -73,7 +73,7 @@ openepd/model/specs/range/cladding.py,sha256=r7M2lc77NR2GXBkgkqRzskQ6TdZeMd7pEEm
73
73
  openepd/model/specs/range/cmu.py,sha256=Sv4yw6121LSgYhW4J82xKsIi1KucaeDVF7xmpZtoCt8,1833
74
74
  openepd/model/specs/range/concrete.py,sha256=CwRJ_0lJ6zRFwaiom3jrp50BSTiB9mIGL3ujcygZwfs,7528
75
75
  openepd/model/specs/range/conveying_equipment.py,sha256=_rqJ9Y3kkP8E6-vkZb6Pih3JnR1nUESJoOLf-LT--sc,3176
76
- openepd/model/specs/range/electrical.py,sha256=EI8pv9SN4lJbFNz1wlyMNAjkA0dsi84pc2J9YvtiwzY,11860
76
+ openepd/model/specs/range/electrical.py,sha256=00fqX7KuM76ZZpL6yyhAHiDNkLgUFvyHfOCsE3Q62io,12139
77
77
  openepd/model/specs/range/electrical_transmission_and_distribution_equipment.py,sha256=xDdyLj6oJRmdybq7W91MtgE80FDpaG6ii5hE921aRGQ,2525
78
78
  openepd/model/specs/range/electricity.py,sha256=yn_S25C_tZqseb8hiJ1yiHszu2mQ49FOFWWCqNpOBY0,997
79
79
  openepd/model/specs/range/exterior_improvements.py,sha256=dcgX9Tv4U_Zki9nGcy6ykvyesDYAtS_CuD-7nf17kMQ,1736
@@ -91,7 +91,7 @@ openepd/model/specs/range/mixins/access_flooring_mixin.py,sha256=JEcvlmKv3R5dVIM
91
91
  openepd/model/specs/range/network_infrastructure.py,sha256=aqXEIGqFy0gNCM_ftd3J6aT3FZf9JlT0SBOImhdkTg0,8498
92
92
  openepd/model/specs/range/non_construction.py,sha256=PDJn1QKQR9wHYr-KtWIxji-41IKFSeMZUS1fSjy4QGU,1664
93
93
  openepd/model/specs/range/openings.py,sha256=4MeNkbMAhtcGbiG5lxHCSRSdJ4F42uBMSXp5XJFODj4,15590
94
- openepd/model/specs/range/other_electrical_equipment.py,sha256=H4tZHcHyR2uUYHn-bQfLC6hR4tynVp_7EJbiI-YpK7Y,1001
94
+ openepd/model/specs/range/other_electrical_equipment.py,sha256=NM7mlm38W9PTFMPPvvX5IaPMR2CCbpVO6Yi3i9iBb78,796
95
95
  openepd/model/specs/range/other_materials.py,sha256=EAKHR9VJAkoqHL0FL2x-7PBvBxDD07drqoVLhBlaYzw,5823
96
96
  openepd/model/specs/range/plumbing.py,sha256=jQKrKYGDR33uh3ffo6uVyt3xuSmexkkelfNh_-omNCg,5342
97
97
  openepd/model/specs/range/precast_concrete.py,sha256=nn1U1XwKqqzY1cOPP3KqHZMJq4Ut9RAox4SMVYBa5B8,3763
@@ -101,7 +101,7 @@ openepd/model/specs/range/thermal_moisture_protection.py,sha256=aUpStISG2snc8aZ7
101
101
  openepd/model/specs/range/utility_piping.py,sha256=mQTrKbMTES_0Yta9DBnKehsmA2BAN_zYF_uPZCTKLPo,2665
102
102
  openepd/model/specs/range/wood.py,sha256=ZMStFsFOw5d6tCL2P7kksBnlYhwfvWJBZqoAdqSIUDg,6917
103
103
  openepd/model/specs/range/wood_joists.py,sha256=NCBHL0gdKwdKlGCP6up_Royl9BtWUUeuFfS1r2vIZ30,1785
104
- openepd/model/specs/singular/__init__.py,sha256=omwiL0I3e5SatFB2l3sJk8qqhi819HY7_Ja9T8Ny55w,12028
104
+ openepd/model/specs/singular/__init__.py,sha256=MY2G6zLbJOQuKHKBGflo6BaUcB8rG-UGk-Cc_IHDR5A,12232
105
105
  openepd/model/specs/singular/accessories.py,sha256=xcuSJrG84oTm_w76_wlv_sItfK36gSyDmUD2TnpZnVE,2013
106
106
  openepd/model/specs/singular/aggregates.py,sha256=oSfArxvLUj63w_U0tZViRyiOpMRRjE72ncy2BimKxco,2934
107
107
  openepd/model/specs/singular/aluminium.py,sha256=7Z3WmuW22o92cPHfR6X_OBSoer0V5llwiNdQmWgKTx8,2408
@@ -116,7 +116,7 @@ openepd/model/specs/singular/conveying_equipment.py,sha256=AK_KdGyBDh0_Dl3YCkIyf
116
116
  openepd/model/specs/singular/deprecated/__init__.py,sha256=f8I04fHO5QWpNtorrCgbUXz4r0B0zgsk8zDUfXu_i80,2635
117
117
  openepd/model/specs/singular/deprecated/concrete.py,sha256=swSOfViIvy7z923C6uHBcIZrv_JRMv7wSJHpg9PGAJg,5265
118
118
  openepd/model/specs/singular/deprecated/steel.py,sha256=0A3Y50XpLsPt105t_H8BzByaDUbLoX1o_QIr566JfB4,3499
119
- openepd/model/specs/singular/electrical.py,sha256=BiaPpZBGBzUt5wVacd1tOIZ9dRn9ZAKFg582UfNnmyI,11113
119
+ openepd/model/specs/singular/electrical.py,sha256=mGWddo7MO_S632Os4cpZnJG7bxxCghMB9n1x4g7Lnkk,12148
120
120
  openepd/model/specs/singular/electrical_transmission_and_distribution_equipment.py,sha256=oZYyHgnXn9RH3YzltUEDiiQKrin2mvMlTgC3OhxV7DY,1978
121
121
  openepd/model/specs/singular/electricity.py,sha256=f1cJ9eklNUf97khCIZiT5-z8V_TbOcvH2me_1UTQVrE,823
122
122
  openepd/model/specs/singular/exterior_improvements.py,sha256=tf9lHxb5Mj9Sf3WGjR1wq-mKcyqlvvVKpZG2W6cLcxo,1711
@@ -135,7 +135,7 @@ openepd/model/specs/singular/mixins/conduit_mixin.py,sha256=tj6p-MF84rg4LGxXPC65
135
135
  openepd/model/specs/singular/network_infrastructure.py,sha256=eB3p1zu1u15Ly5iuyyJ4xl3Z1GuBCRVU18Wpz8FWZrg,8521
136
136
  openepd/model/specs/singular/non_construction.py,sha256=VW_dP5I8AUkwa923d2r9X8S78k6OUA5rU0UAypUX8t8,1634
137
137
  openepd/model/specs/singular/openings.py,sha256=IoLBp003qvWZOeTeIPtVPcq4AXdY3ZSSzRK10mnnJac,19183
138
- openepd/model/specs/singular/other_electrical_equipment.py,sha256=FX7p4rMuUbTrz1yDwKkS-Z6odohoq-zCw6SU3Kw5ISs,814
138
+ openepd/model/specs/singular/other_electrical_equipment.py,sha256=55BCXX5GPxYPea_8Ro7hs_gec4ZMZJA72KEuejQqg3Y,791
139
139
  openepd/model/specs/singular/other_materials.py,sha256=iD_AeC8vHXAQuvw62TrVOyoRS6uy5LFb_2PSODDn2hk,4759
140
140
  openepd/model/specs/singular/plumbing.py,sha256=fHmKyy1aQxu8NZ3RTwxuA0CCERMgwVUdMA74kMDVc8o,4568
141
141
  openepd/model/specs/singular/precast_concrete.py,sha256=W2tKf0vOnAdfeGc1n7Pk8yx9jy44afdFB0cbwHjw1HI,7327
@@ -158,7 +158,7 @@ openepd/utils/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
158
158
  openepd/utils/functional.py,sha256=sm7od2_UE-cNToezBlwFQ1TCUJub1tz6VykA1X8XH-I,1274
159
159
  openepd/utils/mapping/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
160
160
  openepd/utils/mapping/common.py,sha256=WphCzwQQlzX11tUk88Ubyq3QPBLvH0tBPSIuH0kmiug,7339
161
- openepd-6.30.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
162
- openepd-6.30.0.dist-info/METADATA,sha256=m6zAhESjdLnk1hSXRpMSGpcwo677rI9_eunN1Qvlni0,9827
163
- openepd-6.30.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
164
- openepd-6.30.0.dist-info/RECORD,,
161
+ openepd-6.31.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
162
+ openepd-6.31.1.dist-info/METADATA,sha256=PIE-lDX5YPJSNeLHNt3sKjTCQIl1vidxMMnK0r8k2RQ,9827
163
+ openepd-6.31.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
164
+ openepd-6.31.1.dist-info/RECORD,,