From e217d4f0af1e1cad27cd87265246dd47e4b85f9a Mon Sep 17 00:00:00 2001 From: Martin Holmer Date: Sat, 3 Nov 2018 12:32:22 -0400 Subject: [PATCH] Update package version requirements --- README.md | 4 ++-- RELEASES.md | 20 ++++++++++++++++++++ conda.recipe/meta.yaml | 8 ++++---- docs/index.html | 8 ++++---- environment.yml | 4 ++-- 5 files changed, 32 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index ab8a948..ae73a98 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ providing details on what you think should be added to Behavioral-Responses. If you want to **propose code changes**, follow the directions in the [Tax-Calculator Contributor -Guide](http://taxcalc.readthedocs.io/en/latest/contributor_guide.html) +Guide](https://taxcalc.readthedocs.io/en/latest/contributor_guide.html) on how to fork and clone the Behavioral-Responses git repository. Before developing any code changes be sure to read completely the Tax-Calculator Contributor Guide and then read about the @@ -70,7 +70,7 @@ Citing Behavioral-Responses Please cite the source of your analysis as "Behavioral-Responses release #.#.#, author's calculations." If you wish to link to Behavioral-Responses, -http://open-source-economics.github.io/Behavioral-Responses/ is +https://open-source-economics.github.io/Behavioral-Responses/ is preferred. Additionally, we strongly recommend that you describe the elasticity assumptions used, and provide a link to the materials required to replicate your analysis or, at least, note that those diff --git a/RELEASES.md b/RELEASES.md index eec21ae..74b9a50 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -4,6 +4,26 @@ Go [here](https://github.com/open-source-economics/Behavioral-Responses/pulls?q= for a complete commit history. +2018-11-03 Release 0.2.0 +------------------------ +(last merged pull request is +[#15](https://github.com/open-source-economics/Behavioral-Responses/pull/15)) + +**API Changes** +- Make specification of required package versions comply with style in conda cheat sheet + [[#15](https://github.com/open-source-economics/Behavioral-Responses/pull/15) + by Martin Holmer] + +**New Features** +- None + +**Bug Fixes** +- None + + +_Earlier Releases:_ + + 2018-11-01 Release 0.1.0 ------------------------ (last merged pull request is diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml index 56ca034..1a24ac1 100755 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -5,14 +5,14 @@ package: requirements: build: - python=3.6 - - numpy=1.13 - - pandas=0.23 + - "numpy>=1.13" + - "pandas>=0.22" - taxcalc run: - python=3.6 - - numpy=1.13 - - pandas=0.23 + - "numpy>=1.13" + - "pandas>=0.22" - taxcalc test: diff --git a/docs/index.html b/docs/index.html index ad84c2f..1b7f66e 100644 --- a/docs/index.html +++ b/docs/index.html @@ -14,12 +14,12 @@

Using Behavioral-Responses

This document tells you how to use Behavioral-Responses, an open-source model in the Policy Simulation Library (PSL) collection of USA tax models. You always use Behavioral-Responses in conjunction with - + Tax-Calculator, the static-analysis model in the PSL collection of USA tax models, by writing and executing a Python script. For an introduction to writing Python scripts using Tax-Calculator, read the tested recipes in our - + Tax-Calculator Cookbook. If you want to participate in the development of Behavioral-Responses — by asking a question, reporting a bug, improving the documentation or making an enhancement @@ -51,7 +51,7 @@

Response Parameters and Logic

response function.

An interface to Behavioral-Responses for the -TaxBrain web application +TaxBrain web application is located in the tbi.py file. But this is of interest only to TaxBrain developers.

@@ -89,7 +89,7 @@

Basic Python Recipe

of the parameters vary across (say, earnings) groups, you can use the Tax-Calculator quantity_response function. A recipe for doing this is contained in the - + Tax-Calculator Cookbook. That recipe simply estimates the responses. But the techniques used in the Behavioral-Responses response function can be used to apply the estimated diff --git a/environment.yml b/environment.yml index 5705d53..7202715 100644 --- a/environment.yml +++ b/environment.yml @@ -3,8 +3,8 @@ channels: - ospc dependencies: - python=3.6 -- numpy=1.13 -- pandas=0.23 +- "numpy>=1.13" +- "pandas>=0.22" - taxcalc - pytest - pytest-pep8