Skip to content

Commit 9b3fee6

Browse files
committed
Add January 2026 data
1 parent 00c7712 commit 9b3fee6

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/projections.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const currentYear = "2025"
1+
const currentYear = "2026"
22
export const projectedUnitsLabel = `Projected units, ${currentYear}*`
33

44
const months = {
@@ -17,7 +17,7 @@ const months = {
1717
}
1818

1919
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
20-
const latestMonth: number = 12
20+
const latestMonth: number = 1
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, 12)
84-
LAST_YEAR_ANNUAL_DATA_RELEASED = True
83+
LATEST_MONTH = (2026, 1)
84+
LAST_YEAR_ANNUAL_DATA_RELEASED = False
8585

8686

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

0 commit comments

Comments
 (0)