Skip to content

Commit 7b04cd0

Browse files
committed
Add May 2025 data
1 parent 7b572a4 commit 7b04cd0

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/projections.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const months = {
1717
}
1818

1919
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
20-
const latestMonth: number = 3
20+
const latestMonth: number = 5
2121
const glueWord = latestMonth == 2 ? "and" : "through"
2222
const observedMonths =
2323
latestMonth == 1

python/housing_data/build_data_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ def get_numerical_columns(
8080
CANADA_POPULATION_DIR = Path("data", "canada-population")
8181

8282
# Last year and month for which monthly BPS data is available (and is cloned to housing-data-data).
83-
LATEST_MONTH = (2025, 3)
84-
LAST_YEAR_ANNUAL_DATA_RELEASED = False
83+
LATEST_MONTH = (2025, 5)
84+
LAST_YEAR_ANNUAL_DATA_RELEASED = True
8585

8686

8787
def write_to_json_directory(df: pd.DataFrame, path: Path) -> None:

0 commit comments

Comments
 (0)