Skip to content

Commit

Permalink
3.3.4 push
Browse files Browse the repository at this point in the history
  • Loading branch information
dkundih committed Nov 19, 2021
1 parent e93446b commit 00eb272
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,4 +222,7 @@ CHANGELOG
- republish and 3.3.1 ghost overwrite.

3.3.3 (20/11/2021)
- initial bug fix deployed.
- initial bug fix deployed.

3.3.4 (20/11/2021)
- additional bug fixes deployed.
2 changes: 1 addition & 1 deletion duality/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
TOOLKIT
-------
duality.toolkit is a set of data manipulation tools that can be directly accessed from the main module.
duality.toolkit is a set of data manipulation tools that can be directly accessed from the main module as duality.function()
print(help(duality.toolkit)) in order to see available features.
MONTECARLO
Expand Down
2 changes: 1 addition & 1 deletion duality/hub/toolkit.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
(MODULE FUNCTIONS)
------------------
The following functions are available in the duality.hub.toolkit module, but can be directly accessed from the main module as duality.function()
duality.toolkit is a set of data manipulation tools that can be directly accessed from the main module as duality.function()
.random_value(mean, st_dev, **rounded) - gives a random value of mean and standard deviation inputed, if rounded = 'y', value will be rounded.
Expand Down
2 changes: 1 addition & 1 deletion duality/misc/_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

]
__license__ = 'Copyright © 2021- David Kundih. All rights reserved. Licensed under the Apache License, Version 2.0 | For more details about the license and terms of use visit the official duality documentation linked at https://github.com/dkundih/duality and https://pypi.org/project/duality'
__version__ = '3.3.3'
__version__ = '3.3.4'
__documentation__ = 'https://github.com/dkundih/duality | https://pypi.org/project/duality'
__contact__ = '[email protected] | [email protected]'
__donate__ = 'https://patreon.com/dkundih | https://buymeacoffee.com/dkundih'
Expand Down
1 change: 1 addition & 0 deletions duality/objects/montecarlo.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ class MonteCarlo:
list_of_values - pandas dataframe of values.
time_seq - desired time sequence.
num_sims - desired number of simulation iterations.
ref_value_index (default: ref_value_index = 0) - index on which the starting point of the simulation is created.
return_data (default: return_data = True) - initiates execute() function after data setup.
log_summary (default: log_summary = False) - event log of executed functions. - DEVELOPER MODE ONLY
* Requirements:
Expand Down

0 comments on commit 00eb272

Please sign in to comment.