You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by is...@apache.org on 2022/09/27 05:37:52 UTC

[solr] branch branch_9x updated: Changing releaseWizard's England reference to UK

This is an automated email from the ASF dual-hosted git repository.

ishan pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/branch_9x by this push:
     new b2777781d37 Changing releaseWizard's England reference to UK
b2777781d37 is described below

commit b2777781d37ee109b6c60acba95fe8c0478b2f36
Author: Ishan Chattopadhyaya <is...@apache.org>
AuthorDate: Tue Sep 27 11:07:33 2022 +0530

    Changing releaseWizard's England reference to UK
---
 dev-tools/scripts/releaseWizard.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tools/scripts/releaseWizard.py b/dev-tools/scripts/releaseWizard.py
index a6b91eff95f..1db3fb17f1f 100755
--- a/dev-tools/scripts/releaseWizard.py
+++ b/dev-tools/scripts/releaseWizard.py
@@ -1955,7 +1955,7 @@ today = datetime.utcnow().date()
 sundays = {(today + timedelta(days=x)): 'Sunday' for x in range(10) if (today + timedelta(days=x)).weekday() == 6}
 y = datetime.utcnow().year
 years = [y, y+1]
-non_working = holidays.CA(years=years) + holidays.US(years=years) + holidays.England(years=years) \
+non_working = holidays.CA(years=years) + holidays.US(years=years) + holidays.UK(years=years) \
               + holidays.DE(years=years) + holidays.NO(years=years) + holidays.IND(years=years) + holidays.RU(years=years)