You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update documenation to new theme
* Support stange output variable names
* Refactor `to_dataframe` method to include task information option and update documentation
* Update user guide, and simply as many examples as possible.
* black formatting
* Update dependencies
* Update user guide to clarify installation and setup instructions
* Expose `wraptext` function in the module's public API
* Update api docs to render docstrings correctly
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10-5Lines changed: 10 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,11 @@
2
2
3
3
## v1.19.0
4
4
5
+
**Changed:**
6
+
* The `results.to_dataframe()` no longer returns the special `task_*` (meta data) in the output columns.
7
+
To get the extra task info use `results.to_dataframe(*, include_task_info=True)`
8
+
* The documentation page updated.
9
+
5
10
**Added:**
6
11
* New `macro_commands.ExtendOutput()` helper macro that can add arbitrary values
7
12
to the results output. This allows adding values that don't need to exist as
@@ -230,7 +235,7 @@ just treated as NaN.
230
235
- Fixed issue which would cauase macros to execute twice when running the GUI version of AnyBody.
231
236
232
237
**Added:**
233
-
- Added a `interactive_mode` argument to the {class}`AnyPyProcess <anypytools.AnPyProcess>` class. Setting this argument will automaticially lauch the GUI version
238
+
- Added a `interactive_mode` argument to the {class}`AnyPyProcess <anypytools.abcutils.AnyPyProcess>` class. Setting this argument will automaticially lauch the GUI version
234
239
of AnyBody with the macro commands. Futher it will not automatically exit AnyBody once the macro commands has finished. This must be done manually by the user.
235
240
236
241
@@ -546,15 +551,15 @@ happend because empty folders (represented by "...") would become the python eli
546
551
547
552
**Fixed:**
548
553
549
-
- Fix regression in for {class}`AnyPyTools.macro_comands.SetValue_random` which caused a
554
+
- Fix regression in for {py:class}`SetValue_random <anypytools.macroutils.SetValue_random>` which caused a
550
555
crash when generating macros.
551
556
552
557
## v0.12
553
558
554
559
**Fixed:**
555
560
556
561
- Missing newlines in error output from pytest plugin.
557
-
- Fix a problem where the `ignore_errors` argument to {class}`AnyPyProcess()` could
562
+
- Fix a problem where the `ignore_errors` argument to {class}`anypytools.abcutils.AnyPyProcess` could
558
563
not filter warnings when they were considered as errors with the `fatal_warnings`
559
564
arguments.
560
565
@@ -578,7 +583,7 @@ happend because empty folders (represented by "...") would become the python eli
578
583
**New:**
579
584
580
585
- Added option to the set the priority of the macro operations.
581
-
The option is an argument to {class}`AnyPyProcess()`.
586
+
The option is an argument to {class}`AnyPyProcess <anypytools.abcutils.AnyPyProcess>`.
582
587
583
588
```python
584
589
from anypytools importIDLE_PRIORITY_CLASS
@@ -593,7 +598,7 @@ happend because empty folders (represented by "...") would become the python eli
593
598
-`NORMAL_PRIORITY_CLASS`
594
599
-`ABOVE_NORMAL_PRIORITY_CLASS`.
595
600
596
-
- Added argument `fatal_warnings` to {class}`AnyPyProcess()` which
601
+
- Added argument `fatal_warnings` to {class}`AnyPyProcess <anypytools.abcutils.AnyPyProcess>` which
[anybody modeling system (ams)]: http://www.anybodytech.com
65
-
[jupyter notebook based tutorial]: http://nbviewer.jupyter.org/github/AnyBody-Research-Group/AnyPyTools/blob/master/docs/Tutorial/00_AnyPyTools_tutorial.ipynb
0 commit comments