honeybee-core 1.64.9__py3-none-any.whl → 1.64.11__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.
honeybee/typing.py CHANGED
@@ -184,8 +184,8 @@ def clean_string(value, input_name=''):
184
184
  sha256_hash = hashlib.sha256(value.encode('utf-8'))
185
185
  hash_str = str(sha256_hash.hexdigest())
186
186
  return hash_str[:8] if len(hash_str) > 8 else hash_str
187
- assert len(val) <= 100, 'Input {} "{}" must be less than 100 characters.'.format(
188
- input_name, value)
187
+ if len(val) > 100:
188
+ val = val[:100]
189
189
  return val
190
190
 
191
191
 
@@ -228,8 +228,8 @@ def clean_ep_string(value, input_name=''):
228
228
  sha256_hash = hashlib.sha256(value.encode('utf-8'))
229
229
  hash_str = str(sha256_hash.hexdigest())
230
230
  return hash_str[:8] if len(hash_str) > 8 else hash_str
231
- assert len(val) <= 100, 'Input {} "{}" must be less than 100 characters.'.format(
232
- input_name, value)
231
+ if len(val) > 100:
232
+ val = val[:100]
233
233
  return val
234
234
 
235
235
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: honeybee-core
3
- Version: 1.64.9
3
+ Version: 1.64.11
4
4
  Summary: A library to create 3D building geometry for various types of environmental simulation.
5
5
  Home-page: https://github.com/ladybug-tools/honeybee-core
6
6
  Author: Ladybug Tools
@@ -18,8 +18,8 @@ Classifier: Programming Language :: Python :: Implementation :: IronPython
18
18
  Classifier: Operating System :: OS Independent
19
19
  Description-Content-Type: text/markdown
20
20
  License-File: LICENSE
21
- Requires-Dist: ladybug-core==0.44.30
22
- Requires-Dist: ladybug-geometry-polyskel==1.7.35
21
+ Requires-Dist: ladybug-core==0.44.31
22
+ Requires-Dist: ladybug-geometry-polyskel==1.7.36
23
23
  Requires-Dist: honeybee-schema==1.59.1; python_version >= "3.7"
24
24
  Dynamic: author
25
25
  Dynamic: author-email
@@ -23,7 +23,7 @@ honeybee/room.py,sha256=ptwpQPx6FpWgu7A0XhM2rekZY6dXMZCC62kwpn00JAY,169215
23
23
  honeybee/search.py,sha256=KOIeQjYdj0yhRWPmF5kiFiH8Ei0WbzuiU-capnwYVeM,5060
24
24
  honeybee/shade.py,sha256=2zuW1lR5wfe-UyAosuCX-3tII6CKONq7wt8Ac_jXU6c,20698
25
25
  honeybee/shademesh.py,sha256=WnpYkt04zuB8w-6OETNP7ZfzJarykEkQig6YdNkuVOw,14069
26
- honeybee/typing.py,sha256=E8-HrCB9cSoqhFR6zcFXhrAlQRAFw_sxHGdobB8Lre8,20051
26
+ honeybee/typing.py,sha256=WT50PeWLucsWOkY-qgt2ORMdUjmzHrVqFmLMHQcaWtg,19919
27
27
  honeybee/units.py,sha256=_qG_G5b9hdqjpyVOpGdIYCB6k8VKYjcxSJn1St-7Xjc,3204
28
28
  honeybee/cli/__init__.py,sha256=nYyTV_HapGo-a1XZLZps9__Bqp50YJYzHZ1LzHp4TJU,3675
29
29
  honeybee/cli/compare.py,sha256=CxOtGnaDkc9ACt6MgkQBUcNuP0aBS4Kb7vsWDYnRnY8,6544
@@ -40,9 +40,9 @@ honeybee/writer/model.py,sha256=N7F_jksf-5TrdVecuxTaFWxnPVFLmQs7k8g27TsdB7Q,177
40
40
  honeybee/writer/room.py,sha256=kFghgStTU1SEJSLigXB0VjOWhZtgs4uXuAqdwd4yRQo,174
41
41
  honeybee/writer/shade.py,sha256=EpgX-vMc-s21TnMvNWvWTKyT8iAnxu1nFVXzjY1oyF8,177
42
42
  honeybee/writer/shademesh.py,sha256=Y41bLogJ7dwpvMe5cAWVRDRVqJEwo9e5hFJQjlt6UX8,189
43
- honeybee_core-1.64.9.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
44
- honeybee_core-1.64.9.dist-info/METADATA,sha256=OS9Xj4aqFuwbmwj9PwNzOp9k_dPEkzFNoOt494bfJnQ,3729
45
- honeybee_core-1.64.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
46
- honeybee_core-1.64.9.dist-info/entry_points.txt,sha256=r3YqOm40goBroH3ccUhpwQjvTwu10JWLd0HIRHI1J8E,47
47
- honeybee_core-1.64.9.dist-info/top_level.txt,sha256=8ve7puCRLUA9XDEGc1Mcs-UX9sFjpPV8MeTaIMwQ_Tg,9
48
- honeybee_core-1.64.9.dist-info/RECORD,,
43
+ honeybee_core-1.64.11.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
44
+ honeybee_core-1.64.11.dist-info/METADATA,sha256=ST3XHmZEdVovHETsNKcXhzzsKr9_dE4CKVURTk33vXY,3730
45
+ honeybee_core-1.64.11.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
46
+ honeybee_core-1.64.11.dist-info/entry_points.txt,sha256=r3YqOm40goBroH3ccUhpwQjvTwu10JWLd0HIRHI1J8E,47
47
+ honeybee_core-1.64.11.dist-info/top_level.txt,sha256=8ve7puCRLUA9XDEGc1Mcs-UX9sFjpPV8MeTaIMwQ_Tg,9
48
+ honeybee_core-1.64.11.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5