mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-05-14 20:48:08 +00:00
Bump R version and update holidays file for release (#2349)
This commit is contained in:
parent
583f81e428
commit
0bf05baf3c
4 changed files with 12139 additions and 5511 deletions
|
|
@ -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")
|
||||
|
|
|
|||
BIN
R/R/sysdata.rda
BIN
R/R/sysdata.rda
Binary file not shown.
File diff suppressed because it is too large
Load diff
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue