From c866ae4bafb8779d471ca6ffd951c7258c4a1a65 Mon Sep 17 00:00:00 2001 From: Mateo Velasquez-Giraldo Date: Sat, 20 Feb 2021 12:20:08 -0500 Subject: [PATCH 1/3] Add csv's to manifest --- MANIFEST.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 4e4f908f2..4cd70e5cf 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -11,7 +11,7 @@ include MANIFEST.in include setup.cfg # include data files -recursive-include HARK/datasets/data *.txt +recursive-include HARK/datasets/data *.txt *.csv # except build files global-exclude *.pyc From f08ea09b8d1079da2beb0add8b49945f6eca7d4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateo=20Vel=C3=A1squez-Giraldo?= Date: Sat, 20 Feb 2021 12:27:11 -0500 Subject: [PATCH 2/3] Update CHANGELOG.md --- Documentation/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/CHANGELOG.md b/Documentation/CHANGELOG.md index 8c54f59ed..835bc9def 100644 --- a/Documentation/CHANGELOG.md +++ b/Documentation/CHANGELOG.md @@ -42,6 +42,7 @@ interpolation for problems with CRRA utility. See [#888](https://github.com/econ * AgentType simulate() method now returns history. [#916](https://github.com/econ-ark/HARK/pull/916) * Rename DiscreteDistribution.drawDiscrete() to draw() * Update documentation and warnings around IncShkDstn [#955](https://github.com/econ-ark/HARK/pull/955) +* Adds csv files to `MANIFEST.in`. [957](https://github.com/econ-ark/HARK/pull/957) ### 0.10.8 From 59ba31c5f54361b869cb74283b8af7e9617476e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateo=20Vel=C3=A1squez-Giraldo?= Date: Sat, 20 Feb 2021 13:15:44 -0500 Subject: [PATCH 3/3] Update MANIFEST.in --- MANIFEST.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 4cd70e5cf..36fe6d79b 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -11,7 +11,8 @@ include MANIFEST.in include setup.cfg # include data files -recursive-include HARK/datasets/data *.txt *.csv +recursive-include HARK/datasets/data *.txt +recursive-include HARK/datasets *.csv # except build files global-exclude *.pyc