hestia-earth-utils 0.16.10__py3-none-any.whl → 0.16.12__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.
@@ -176,7 +176,6 @@ def get_node_value(
176
176
  isinstance(value, float),
177
177
  isinstance(value, int),
178
178
  isinstance(value, bool),
179
- value is None,
180
179
  ]
181
180
  )
182
181
  else default if not non_empty_value(value) else value
@@ -8,9 +8,14 @@ from hestia_earth.schema import NodeType
8
8
 
9
9
 
10
10
  def to_precision(number: float, digits: int = 3) -> float:
11
- return (
12
- 0 if not number else round(number, digits - int(floor(log10(abs(number)))) - 1)
13
- )
11
+ try:
12
+ return (
13
+ 0
14
+ if not number
15
+ else round(number, digits - int(floor(log10(abs(number)))) - 1)
16
+ )
17
+ except ValueError:
18
+ return number
14
19
 
15
20
 
16
21
  def non_empty_value(value) -> bool:
@@ -156,7 +161,8 @@ def is_number(value):
156
161
  """
157
162
  return all(
158
163
  [
159
- not isinstance(value, bool), # True is apparently considered an `int`
164
+ # True is apparently considered an `int`
165
+ not isinstance(value, bool),
160
166
  any([isinstance(value, int), isinstance(value, float)]),
161
167
  ]
162
168
  )
@@ -1 +1 @@
1
- VERSION = "0.16.10"
1
+ VERSION = "0.16.12"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hestia_earth_utils
3
- Version: 0.16.10
3
+ Version: 0.16.12
4
4
  Summary: HESTIA's utils library
5
5
  Home-page: https://gitlab.com/hestia-earth/hestia-utils
6
6
  Author: HESTIA Team
@@ -1,6 +1,6 @@
1
1
  hestia_earth/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  hestia_earth/utils/api.py,sha256=b6g87ylAgdWvwPlDeZDv74UGfXVe1KFXap5-Rv5daSE,9929
3
- hestia_earth/utils/blank_node.py,sha256=de-Vu0wEsm5xl6XjJREsNTRRuPSHTsXRkg2KSBVa66o,7889
3
+ hestia_earth/utils/blank_node.py,sha256=K_8wWACiwOqEJR71ClQFInzsIdDH3UUSwrtCZoh9V-o,7854
4
4
  hestia_earth/utils/calculation_status.py,sha256=f5b05cEFXMfFI1clirIt7v3Y9H2Nja66GYv1NCyZjf0,2381
5
5
  hestia_earth/utils/cycle.py,sha256=oo0CesLMblL8ewI4s7eXdyNjr9R9df4Vyr0iRXCYFu4,1326
6
6
  hestia_earth/utils/date.py,sha256=IVqZjIJda8lUbDZkEbaNN5FBQoTHdNudgKXpngm-2a4,1847
@@ -14,8 +14,8 @@ hestia_earth/utils/request.py,sha256=EfitmS13abPxfl5gSAOyHRUYhk4R2Rfv94fF9lvOT00
14
14
  hestia_earth/utils/stats.py,sha256=vTNyKcMKmX0DoodM9QEG7HF8qm2Wf-4ckMWQFWZ1VgE,34729
15
15
  hestia_earth/utils/table.py,sha256=MOJDo5fQPRDogAty_UXbO9-EXFwz97m0f7--mOM17lQ,2363
16
16
  hestia_earth/utils/term.py,sha256=aBVYuYv55nPqJPyt5mN4Fz652s_1hwUPckNUZX0pMP8,1064
17
- hestia_earth/utils/tools.py,sha256=FPzevMJQPBEOWS68em4CuDqJNjmRkTeyF_h2wf-r39U,5271
18
- hestia_earth/utils/version.py,sha256=m9xLiUwc2sMV2VdfuWN3MgvHe4zrkjcBJgwtBc1YC-E,20
17
+ hestia_earth/utils/tools.py,sha256=b8_ZJ4lfRVwOFXzl4_Tbah1FmrGnzDx5QVgVLQmQUz4,5372
18
+ hestia_earth/utils/version.py,sha256=z2tz1TqNic_wxJ0cdufZWrE4ryfXE9jZgzJKKWhdm4E,20
19
19
  hestia_earth/utils/pivot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
20
  hestia_earth/utils/pivot/_shared.py,sha256=8-AZAAitXU53BYpOFFGnuCy5VBSphyClgIqGU-kg6CM,1436
21
21
  hestia_earth/utils/pivot/pivot_csv.py,sha256=TtePpo9L_GKISpQMW9dwjBv2tHHE822rb-j6_bflVOA,12251
@@ -25,9 +25,9 @@ hestia_earth/utils/storage/_azure_client.py,sha256=mseexhzjteRDzzoFe2fEXe9MYLmvj
25
25
  hestia_earth/utils/storage/_local_client.py,sha256=KbYqTfniIU5R5J1m_unCQip9kOz9EGIGI0OH0QvD8eo,551
26
26
  hestia_earth/utils/storage/_s3_client.py,sha256=8TCxiHfxE7G8kdp3CnEFrxgmPwfPyci3-blsowE2T7o,3146
27
27
  hestia_earth/utils/storage/_sns_client.py,sha256=pvtXYw-sQ8ns3mlDz7ld9iZp3FYSm0xSXSXMJ5IPnBc,380
28
- hestia_earth_utils-0.16.10.data/scripts/hestia-format-upload,sha256=IhLAHHPJqRgUcht-M_EUEsRMbRbMfshig07o488zscM,703
29
- hestia_earth_utils-0.16.10.data/scripts/hestia-pivot-csv,sha256=0YBuGuyPO8rytod6iwWEKiQdSlr9JLuD001k6U5t6no,1163
30
- hestia_earth_utils-0.16.10.dist-info/METADATA,sha256=IElWducWXMK-2YdsM_s5OJ_BD82nLtgTna1R4aQ0gBU,1870
31
- hestia_earth_utils-0.16.10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
32
- hestia_earth_utils-0.16.10.dist-info/top_level.txt,sha256=q0QxKEYx9uLpAD5ZtC7Ypq29smEPfOzEAn7Xv8XHGOQ,13
33
- hestia_earth_utils-0.16.10.dist-info/RECORD,,
28
+ hestia_earth_utils-0.16.12.data/scripts/hestia-format-upload,sha256=IhLAHHPJqRgUcht-M_EUEsRMbRbMfshig07o488zscM,703
29
+ hestia_earth_utils-0.16.12.data/scripts/hestia-pivot-csv,sha256=0YBuGuyPO8rytod6iwWEKiQdSlr9JLuD001k6U5t6no,1163
30
+ hestia_earth_utils-0.16.12.dist-info/METADATA,sha256=CZegpFMoj0MWumacYaibHi1BCg6IDaJDuIDtMlEzT3A,1870
31
+ hestia_earth_utils-0.16.12.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
32
+ hestia_earth_utils-0.16.12.dist-info/top_level.txt,sha256=q0QxKEYx9uLpAD5ZtC7Ypq29smEPfOzEAn7Xv8XHGOQ,13
33
+ hestia_earth_utils-0.16.12.dist-info/RECORD,,