Releases: compute-tooling/compute-studio-kit
Releases · compute-tooling/compute-studio-kit
Compute Studio Kit 1.16.8
Compute Studio Kit 1.16.7
- Combine pip requirements when an
environment.ymlandrequirements.txtfile are present. (#28)
Compute Studio Kit 1.16.5
Compute Studio Kit 1.16.3
Compute Studio Kit 1.16.2
- Update
csk build-envcommand to use non-default channels if specified in theenvironment.ymlfile. (#23)
Compute Studio Kit 1.16.1
- Bug fix for case where
environment.ymlhas less than / greater than pins. (#22)
Compute Studio Kit 1.16
- Add command for building python environments from the current environment. (#21)
Compute Studio Kit 1.15
- Add doc strings for new Python Client API docs. (#20)
Compute Studio Kit 1.14
- Add
inputsmethod to theComputeStudioapi client for retrieving simulation inputs. (#19)
In [1]: import cs_kit
In [2]: taxbrain_client = cs_kit.ComputeStudio("PSLmodels", "Tax-Brain")
In [3]: taxbrain_params = taxbrain_client.inputs(model_pk=49797)["adjustment"]
In [4]: taxbrain_params["policy"]["EITC_c"]
Out[4]:
[{'EIC': '0kids', 'year': 2017, 'value': 510.0},
{'EIC': '1kid', 'year': 2017, 'value': 3400.0},
{'EIC': '2kids', 'year': 2017, 'value': 5616.0},
{'EIC': '3+kids', 'year': 2017, 'value': 6318.0}]Compute Studio 1.13.0
- Use the app type to determine which configuration files are necessary when running the
csk initcommand. (#17)