File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed
Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ releases are available on [conda-forge](https://anaconda.org/conda-forge/dags).
66
77## 0.5.0
88
9+ - :gh:` 63 ` Build docs using pixi, update docs (:ghuser:` hmgaudecker ` ).
10+ - :gh:` 64 ` Loosen type annotation of ` rename_arguments ` decorator to prevent lots of
11+ ` # ty: ignore ` s. (:ghuser:` hmgaudecker ` ).
912- :gh:` 62 ` Drop Python 3.10 support, improve typing thanks to requiring current networkx
1013 (:ghuser:` hmgaudecker ` ).
1114
Original file line number Diff line number Diff line change @@ -37,14 +37,12 @@ combined = dags.concatenate_functions(
3737result = combined(x = 5 ) # Returns {"c": 51}
3838```
3939
40- ## Projects Using dags
41-
42- dags is used by several open source projects:
43-
44- - [ pylcm] ( https://github.com/OpenSourceEconomics/pylcm ) - Life Cycle Models
45- - [ ttsim] ( https://github.com/ttsim-dev/ttsim ) /
46- [ gettsim] ( https://github.com/ttsim-dev/gettsim ) - Tax-Transfer Simulator Backend and
47- Taxes and Transfers Simulator for Germany
40+ The key is that you can build the combined function at runtime, which allows you to
41+ compose a computational pipeline in a way that you do not need to specify in advance, or
42+ in a multitude of ways. It has proven very helpful in a framework to solve life cycle
43+ models ([ pylcm] ( https://github.com/OpenSourceEconomics/pylcm ) ) and to model the German
44+ taxes and transfers system ([ ttsim] ( https://github.com/ttsim-dev/ttsim ) /
45+ [ gettsim] ( https://github.com/ttsim-dev/gettsim ) ).
4846
4947## Installation
5048
You can’t perform that action at this time.
0 commit comments