Bump R version and update holidays file for release (#2349)

This commit is contained in:
Cuong Duong 2023-01-20 21:52:45 +11:00 committed by GitHub
parent 583f81e428
commit 0bf05baf3c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 12139 additions and 5511 deletions

View file

@ -1,7 +1,7 @@
Package: prophet
Title: Automatic Forecasting Procedure
Version: 1.1.1
Date: 2022-09-09
Version: 1.1.2
Date: 2023-01-20
Authors@R: c(
person("Sean", "Taylor", email = "sjtz@pm.me", role = c("cre", "aut")),
person("Ben", "Letham", email = "bletham@fb.com", role = "aut")

Binary file not shown.

File diff suppressed because it is too large Load diff

View file

@ -67,7 +67,7 @@ def generate_holidays_file():
# Convert to ASCII, and drop holidays that fail to convert
generated_holidays['holiday'] = generated_holidays['holiday'].apply(utf8_to_ascii)
failed_countries = generated_holidays.loc[generated_holidays['holiday'] == 'FAILED_TO_PARSE', 'country'].unique()
if failed_countries:
if len(failed_countries) > 0:
print("Failed to convert UTF-8 holidays for:")
print('\n'.join(failed_countries))
assert 'FAILED_TO_PARSE' not in generated_holidays['holiday'].unique()