Skip to content

Commit 9fdb78f

Browse files
authored
Merge pull request OCHA-DAP#114 from OCHA-DAP/HDXDSYS-811-hno-pop-to-all
HDXDSYS-811 replace pop with all
2 parents d01f47d + 49db9ba commit 9fdb78f

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7+
## [0.9.17] - 2024-06-10
8+
9+
### Changed
10+
11+
- Replace "POP" with "all" for humanitarian needs population status
12+
713
## [0.9.16] - 2024-06-10
814

915
### Changed

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ greenlet==3.0.3
5858
# via sqlalchemy
5959
gspread==6.1.2
6060
# via hdx-python-scraper
61-
hapi-schema==0.8.11
61+
hapi-schema==0.8.12
6262
# via hapi-pipelines (pyproject.toml)
6363
hdx-python-api==6.3.1
6464
# via
@@ -124,7 +124,7 @@ markupsafe==2.1.5
124124
# via jinja2
125125
mdurl==0.1.2
126126
# via markdown-it-py
127-
more-itertools==10.2.0
127+
more-itertools==10.3.0
128128
# via inflect
129129
ndg-httpsclient==0.5.1
130130
# via hdx-python-api

src/hapi/pipelines/database/humanitarian_needs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def create_row(in_col, population_status):
136136
)
137137
self._session.add(humanitarian_needs_row)
138138

139-
create_row("Population", "POP")
139+
create_row("Population", "all")
140140
create_row("Affected", "AFF")
141141
create_row("In Need", "INN")
142142
create_row("Targeted", "TGT")

0 commit comments

Comments
 (0)