We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b572a4 commit 7b04cd0Copy full SHA for 7b04cd0
2 files changed
lib/projections.tsx
@@ -17,7 +17,7 @@ const months = {
17
}
18
19
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
20
-const latestMonth: number = 3
+const latestMonth: number = 5
21
const glueWord = latestMonth == 2 ? "and" : "through"
22
const observedMonths =
23
latestMonth == 1
python/housing_data/build_data_utils.py
@@ -80,8 +80,8 @@ def get_numerical_columns(
80
CANADA_POPULATION_DIR = Path("data", "canada-population")
81
82
# 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
+LATEST_MONTH = (2025, 5)
+LAST_YEAR_ANNUAL_DATA_RELEASED = True
85
86
87
def write_to_json_directory(df: pd.DataFrame, path: Path) -> None:
0 commit comments