Skip to content

Commit

Permalink
Update to February 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
sid-kap committed Apr 10, 2024
1 parent 12912e9 commit c6b1e02
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/projections.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const currentYear = "2023"
const currentYear = "2024"
export const projectedUnitsLabel = `Projected units, ${currentYear}*`

const months = {
Expand All @@ -17,7 +17,7 @@ const months = {
}

// eslint-disable-next-line @typescript-eslint/no-inferrable-types
const latestMonth: number = 11
const latestMonth: number = 2
const glueWord = latestMonth == 2 ? "and" : "through"
const observedMonths =
latestMonth == 1
Expand Down
4 changes: 2 additions & 2 deletions python/housing_data/build_data_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ def get_numerical_columns(
CANADA_POPULATION_DIR = Path("data", "canada-population")

# Last year and month for which monthly BPS data is available (and is cloned to housing-data-data).
LATEST_MONTH = (2023, 11)
LAST_YEAR_ANNUAL_DATA_RELEASED = True
LATEST_MONTH = (2024, 2)
LAST_YEAR_ANNUAL_DATA_RELEASED = False


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

0 comments on commit c6b1e02

Please sign in to comment.