Skip to content

Commit 8001165

Browse files
committed
accept income changes
2 parents b289547 + 300f1fa commit 8001165

17 files changed

Lines changed: 17746 additions & 3285 deletions

.github/workflows/ci-checks.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ jobs:
3535
# passing ruff linting is required
3636
- name: Python - Check Linting - ruff
3737
uses: astral-sh/ruff-action@v1
38+
with:
39+
args: "check --extend-ignore F541,F841"
3840

3941
# passing pylint is not required - discuss errors in code review
4042
# adapted from https://github.com/davidslusser/actions_python_pylint/tree/main
@@ -44,7 +46,7 @@ jobs:
4446
if: always()
4547
- name: install pylint
4648
run: |
47-
python - m pip install --upgrade pip
49+
python -m pip install --upgrade pip
4850
pip install pylint
4951
shell: bash
5052
- name: Python - Check Linting - pylint
@@ -89,10 +91,11 @@ jobs:
8991
if: always()
9092
- name: install nbqa
9193
run: |
92-
python - m pip install --upgrade pip
94+
python -m pip install --upgrade pip
9395
pip install pylint
9496
pip install nbqa
9597
shell: bash
9698
- name: Python Notebooks - Check Linting - nbqa
9799
run: "nbqa pylint *.ipynb || echo '::warning title=NoteBook QA Error(s)::Discuss solutions and trade-offs in code review.'"
98100
shell: bash
101+

.gitignore

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,8 @@ venv/
55
*.db
66
*.idea
77
*.ruff_cache
8-
# Ignore large or private files
9-
1_datasets/raw/*
10-
1_datasets/processed/*
11-
*.zip
12-
*.sav
13-
*.dta
14-
15-
# Ignore system files
16-
.DS_Store
17-
Thumbs.db
18-
__pycache__/
19-
*.pyc
20-
21-
# Except these files
22-
. 1_datasets\processed\*.csv
23-
. 1_datasets\raw\*.csv
8+
#raw data
9+
.1_datasets/raw/tedsd_puf_2023.csv
10+
# processed data
11+
.1_datasets/processed/tedsd_ml_clean.csv
12+
.1_datasets/processed/tedsd_engineered_features.csv

1_datasets/processed/tedsd_sample_clean.csv

Lines changed: 10001 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)