voly 0.0.240__py3-none-any.whl → 0.0.241__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.
voly/formulas.py CHANGED
@@ -30,14 +30,12 @@ def vectorize_inputs(func):
30
30
  if is_vectorized:
31
31
  lengths = set(vector_lengths.values())
32
32
  if len(lengths) != 1:
33
- logger.error(f"Inconsistent input lengths in vectorized call: {vector_lengths}")
34
33
  raise VolyError("All vectorized inputs must have the same length.")
35
34
 
36
35
  if any(
37
36
  not isinstance(v, (list, np.ndarray, pd.Series))
38
37
  for k, v in input_dict.items()
39
38
  ):
40
- logger.error("Cannot mix scalar and vector inputs. Pass all as vectors or all as scalars.")
41
39
  raise VolyError("Cannot mix scalar and vector inputs. Pass all as vectors or all as scalars.")
42
40
 
43
41
  max_len = next(iter(lengths))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: voly
3
- Version: 0.0.240
3
+ Version: 0.0.241
4
4
  Summary: Options & volatility research package
5
5
  Author-email: Manu de Cara <manu.de.cara@gmail.com>
6
6
  License: MIT
@@ -1,7 +1,7 @@
1
1
  voly/__init__.py,sha256=8xyDk7rFCn_MOD5hxuv5cxxKZvBVRiSIM7TgaMPpwpw,211
2
2
  voly/client.py,sha256=H4BY5n1isHOqMYX-Koe8-WKBKE6zxbdDYopDF58BPBI,14533
3
3
  voly/exceptions.py,sha256=PBsbn1vNMvKcCJwwJ4lBO6glD85jo1h2qiEmD7ArAjs,92
4
- voly/formulas.py,sha256=nVerxCnE014H1dctuiuWv-bYMgd5Ye2Zo0lwWjmrMHk,10158
4
+ voly/formulas.py,sha256=nSXfQ1brQAs19j2Uj2JRy-h0rXB0_EXX0FOrIU14rRQ,9953
5
5
  voly/models.py,sha256=CGJQr13Uie7iwtx2hjViN9lMXeRN_uOqzp4u8NPaTlA,9282
6
6
  voly/core/__init__.py,sha256=bu6fS2I1Pj9fPPnl-zY3L7NqrZSY5Zy6NY2uMUvdhKs,183
7
7
  voly/core/charts.py,sha256=6MSU0z01fPOVSssodxdnFqchzDfupSmXq_e71WwDmVQ,12635
@@ -13,8 +13,8 @@ voly/core/rnd.py,sha256=wiZ5OIjPDf1Th5_sQ9CZG5JgAo3EL8f63T_Rj1_VP-0,13214
13
13
  voly/utils/__init__.py,sha256=E05mWatyC-PDOsCxQV1p5Xi1IgpOomxrNURyCx_gB-w,200
14
14
  voly/utils/density.py,sha256=ONpRli-IaJDgOZ2sb27HHFc9_tkkGSATKl94JODd86A,5879
15
15
  voly/utils/logger.py,sha256=4-_2bVJmq17Q0d7Rd2mPg1AeR8gxv6EPvcmBDMFWcSM,1744
16
- voly-0.0.240.dist-info/licenses/LICENSE,sha256=wcHIVbE12jfcBOai_wqBKY6xvNQU5E909xL1zZNq_2Q,1065
17
- voly-0.0.240.dist-info/METADATA,sha256=3-lvf0lurdx8oo7KZpgCmyqeab3yHdxEMN4uKqIe7Fo,4115
18
- voly-0.0.240.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
19
- voly-0.0.240.dist-info/top_level.txt,sha256=ZfLw2sSxF-LrKAkgGjOmeTcw6_gD-30zvtdEY5W4B7c,5
20
- voly-0.0.240.dist-info/RECORD,,
16
+ voly-0.0.241.dist-info/licenses/LICENSE,sha256=wcHIVbE12jfcBOai_wqBKY6xvNQU5E909xL1zZNq_2Q,1065
17
+ voly-0.0.241.dist-info/METADATA,sha256=wWQAgMLFY-8qj7dvBoDfP2jSbHx4TsdYTkTkYREmsL0,4115
18
+ voly-0.0.241.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
19
+ voly-0.0.241.dist-info/top_level.txt,sha256=ZfLw2sSxF-LrKAkgGjOmeTcw6_gD-30zvtdEY5W4B7c,5
20
+ voly-0.0.241.dist-info/RECORD,,
File without changes