├── VERSION ├── src └── tzdata │ ├── zoneinfo │ ├── __init__.py │ ├── Africa │ │ ├── __init__.py │ │ ├── Juba │ │ ├── Lome │ │ ├── Accra │ │ ├── Asmara │ │ ├── Asmera │ │ ├── Bamako │ │ ├── Bangui │ │ ├── Banjul │ │ ├── Bissau │ │ ├── Cairo │ │ ├── Ceuta │ │ ├── Dakar │ │ ├── Douala │ │ ├── Harare │ │ ├── Kigali │ │ ├── Lagos │ │ ├── Luanda │ │ ├── Lusaka │ │ ├── Malabo │ │ ├── Maputo │ │ ├── Maseru │ │ ├── Niamey │ │ ├── Tunis │ │ ├── Abidjan │ │ ├── Algiers │ │ ├── Blantyre │ │ ├── Bujumbura │ │ ├── Conakry │ │ ├── Djibouti │ │ ├── El_Aaiun │ │ ├── Freetown │ │ ├── Gaborone │ │ ├── Kampala │ │ ├── Khartoum │ │ ├── Kinshasa │ │ ├── Mbabane │ │ ├── Mogadishu │ │ ├── Monrovia │ │ ├── Nairobi │ │ ├── Ndjamena │ │ ├── Sao_Tome │ │ ├── Timbuktu │ │ ├── Tripoli │ │ ├── Windhoek │ │ ├── Addis_Ababa │ │ ├── Brazzaville │ │ ├── Casablanca │ │ ├── Libreville │ │ ├── Lubumbashi │ │ ├── Nouakchott │ │ ├── Ouagadougou │ │ ├── Porto-Novo │ │ ├── Dar_es_Salaam │ │ └── Johannesburg │ ├── Arctic │ │ ├── __init__.py │ │ └── Longyearbyen │ ├── Asia │ │ ├── __init__.py │ │ ├── Aden │ │ ├── Almaty │ │ ├── Amman │ │ ├── Anadyr │ │ ├── Aqtau │ │ ├── Aqtobe │ │ ├── Atyrau │ │ ├── Baku │ │ ├── Beirut │ │ ├── Brunei │ │ ├── Chita │ │ ├── Dacca │ │ ├── Dhaka │ │ ├── Dili │ │ ├── Dubai │ │ ├── Gaza │ │ ├── Harbin │ │ ├── Hebron │ │ ├── Hovd │ │ ├── Kabul │ │ ├── Kuwait │ │ ├── Macao │ │ ├── Macau │ │ ├── Manila │ │ ├── Muscat │ │ ├── Omsk │ │ ├── Oral │ │ ├── Qatar │ │ ├── Riyadh │ │ ├── Saigon │ │ ├── Seoul │ │ ├── Taipei │ │ ├── Tehran │ │ ├── Thimbu │ │ ├── Tokyo │ │ ├── Tomsk │ │ ├── Urumqi │ │ ├── Yangon │ │ ├── Ashgabat │ │ ├── Baghdad │ │ ├── Bahrain │ │ ├── Bangkok │ │ ├── Barnaul │ │ ├── Bishkek │ │ ├── Calcutta │ │ ├── Colombo │ │ ├── Damascus │ │ ├── Dushanbe │ │ ├── Irkutsk │ │ ├── Istanbul │ │ ├── Jakarta │ │ ├── Jayapura │ │ ├── Karachi │ │ ├── Kashgar │ │ ├── Katmandu │ │ ├── Khandyga │ │ ├── Kolkata │ │ ├── Kuching │ │ ├── Magadan │ │ ├── Makassar │ │ ├── Nicosia │ │ ├── Qostanay │ │ ├── Rangoon │ │ ├── Sakhalin │ │ ├── Shanghai │ │ ├── Tashkent │ │ ├── Tbilisi │ │ ├── Tel_Aviv │ │ ├── Thimphu │ │ ├── Ust-Nera │ │ ├── Yakutsk │ │ ├── Yerevan │ │ ├── Ashkhabad │ │ ├── Choibalsan │ │ ├── Chongqing │ │ ├── Chungking │ │ ├── Famagusta │ │ ├── Ho_Chi_Minh │ │ ├── Hong_Kong │ │ ├── Jerusalem │ │ ├── Kamchatka │ │ ├── Kathmandu │ │ ├── Krasnoyarsk │ │ ├── Novosibirsk │ │ ├── Phnom_Penh │ │ ├── Pontianak │ │ ├── Pyongyang │ │ ├── Qyzylorda │ │ ├── Samarkand │ │ ├── Singapore │ │ ├── Ulaanbaatar │ │ ├── Ulan_Bator │ │ ├── Vientiane │ │ ├── Vladivostok │ │ ├── Kuala_Lumpur │ │ ├── Novokuznetsk │ │ ├── Srednekolymsk │ │ ├── Ujung_Pandang │ │ └── Yekaterinburg │ ├── Brazil │ │ ├── __init__.py │ │ ├── Acre │ │ ├── East │ │ ├── West │ │ └── DeNoronha │ ├── Canada │ │ ├── __init__.py │ │ ├── Yukon │ │ ├── Atlantic │ │ ├── Central │ │ ├── Eastern │ │ ├── Mountain │ │ ├── Pacific │ │ ├── Newfoundland │ │ └── Saskatchewan │ ├── Chile │ │ ├── __init__.py │ │ ├── Continental │ │ └── EasterIsland │ ├── Etc │ │ ├── __init__.py │ │ ├── GMT+1 │ │ ├── GMT+10 │ │ ├── GMT+11 │ │ ├── GMT+12 │ │ ├── GMT+2 │ │ ├── GMT+3 │ │ ├── GMT+4 │ │ ├── GMT+5 │ │ ├── GMT+6 │ │ ├── GMT+7 │ │ ├── GMT+8 │ │ ├── GMT+9 │ │ ├── GMT-10 │ │ ├── GMT-11 │ │ ├── GMT-12 │ │ ├── GMT-13 │ │ ├── GMT-14 │ │ ├── GMT-8 │ │ ├── GMT-9 │ │ ├── GMT │ │ ├── GMT+0 │ │ ├── GMT-0 │ │ ├── GMT0 │ │ ├── UCT │ │ ├── UTC │ │ ├── Zulu │ │ ├── GMT-1 │ │ ├── GMT-2 │ │ ├── GMT-3 │ │ ├── GMT-4 │ │ ├── GMT-5 │ │ ├── GMT-6 │ │ ├── GMT-7 │ │ ├── Greenwich │ │ └── Universal │ ├── Europe │ │ ├── __init__.py │ │ ├── Kiev │ │ ├── Kyiv │ │ ├── Oslo │ │ ├── Riga │ │ ├── Rome │ │ ├── Athens │ │ ├── Berlin │ │ ├── Dublin │ │ ├── Jersey │ │ ├── Kirov │ │ ├── Lisbon │ │ ├── London │ │ ├── Madrid │ │ ├── Malta │ │ ├── Minsk │ │ ├── Monaco │ │ ├── Moscow │ │ ├── Paris │ │ ├── Prague │ │ ├── Samara │ │ ├── Skopje │ │ ├── Sofia │ │ ├── Tirane │ │ ├── Vaduz │ │ ├── Vienna │ │ ├── Warsaw │ │ ├── Zagreb │ │ ├── Zurich │ │ ├── Amsterdam │ │ ├── Andorra │ │ ├── Astrakhan │ │ ├── Belfast │ │ ├── Belgrade │ │ ├── Brussels │ │ ├── Bucharest │ │ ├── Budapest │ │ ├── Busingen │ │ ├── Chisinau │ │ ├── Gibraltar │ │ ├── Guernsey │ │ ├── Helsinki │ │ ├── Istanbul │ │ ├── Ljubljana │ │ ├── Mariehamn │ │ ├── Nicosia │ │ ├── Podgorica │ │ ├── Sarajevo │ │ ├── Saratov │ │ ├── Stockholm │ │ ├── Tallinn │ │ ├── Tiraspol │ │ ├── Ulyanovsk │ │ ├── Uzhgorod │ │ ├── Vatican │ │ ├── Vilnius │ │ ├── Volgograd │ │ ├── Bratislava │ │ ├── Copenhagen │ │ ├── Isle_of_Man │ │ ├── Kaliningrad │ │ ├── Luxembourg │ │ ├── San_Marino │ │ ├── Simferopol │ │ └── Zaporozhye │ ├── Indian │ │ ├── __init__.py │ │ ├── Mahe │ │ ├── Chagos │ │ ├── Cocos │ │ ├── Comoro │ │ ├── Christmas │ │ ├── Kerguelen │ │ ├── Maldives │ │ ├── Mauritius │ │ ├── Mayotte │ │ ├── Reunion │ │ └── Antananarivo │ ├── Mexico │ │ ├── __init__.py │ │ ├── BajaNorte │ │ ├── BajaSur │ │ └── General │ ├── US │ │ ├── __init__.py │ │ ├── Samoa │ │ ├── Alaska │ │ ├── Aleutian │ │ ├── Arizona │ │ ├── Central │ │ ├── Eastern │ │ ├── Hawaii │ │ ├── Michigan │ │ ├── Mountain │ │ ├── Pacific │ │ ├── East-Indiana │ │ └── Indiana-Starke │ ├── America │ │ ├── __init__.py │ │ ├── Indiana │ │ │ ├── __init__.py │ │ │ ├── Knox │ │ │ ├── Vevay │ │ │ ├── Marengo │ │ │ ├── Winamac │ │ │ ├── Petersburg │ │ │ ├── Tell_City │ │ │ ├── Vincennes │ │ │ └── Indianapolis │ │ ├── Kentucky │ │ │ ├── __init__.py │ │ │ ├── Louisville │ │ │ └── Monticello │ │ ├── Argentina │ │ │ ├── __init__.py │ │ │ ├── Jujuy │ │ │ ├── Salta │ │ │ ├── Cordoba │ │ │ ├── La_Rioja │ │ │ ├── Mendoza │ │ │ ├── San_Juan │ │ │ ├── San_Luis │ │ │ ├── Tucuman │ │ │ ├── Ushuaia │ │ │ ├── Catamarca │ │ │ ├── Buenos_Aires │ │ │ ├── Rio_Gallegos │ │ │ └── ComodRivadavia │ │ ├── North_Dakota │ │ │ ├── __init__.py │ │ │ ├── Beulah │ │ │ ├── Center │ │ │ └── New_Salem │ │ ├── Adak │ │ ├── Aruba │ │ ├── Atka │ │ ├── Bahia │ │ ├── Belem │ │ ├── Boise │ │ ├── Jujuy │ │ ├── Lima │ │ ├── Nome │ │ ├── Nuuk │ │ ├── Sitka │ │ ├── Thule │ │ ├── Anguilla │ │ ├── Antigua │ │ ├── Asuncion │ │ ├── Atikokan │ │ ├── Barbados │ │ ├── Belize │ │ ├── Bogota │ │ ├── Cancun │ │ ├── Caracas │ │ ├── Cayenne │ │ ├── Cayman │ │ ├── Chicago │ │ ├── Cordoba │ │ ├── Creston │ │ ├── Cuiaba │ │ ├── Curacao │ │ ├── Dawson │ │ ├── Denver │ │ ├── Detroit │ │ ├── Dominica │ │ ├── Edmonton │ │ ├── Eirunepe │ │ ├── Ensenada │ │ ├── Godthab │ │ ├── Grenada │ │ ├── Guyana │ │ ├── Halifax │ │ ├── Havana │ │ ├── Inuvik │ │ ├── Iqaluit │ │ ├── Jamaica │ │ ├── Juneau │ │ ├── Knox_IN │ │ ├── La_Paz │ │ ├── Maceio │ │ ├── Managua │ │ ├── Manaus │ │ ├── Marigot │ │ ├── Mazatlan │ │ ├── Mendoza │ │ ├── Merida │ │ ├── Miquelon │ │ ├── Moncton │ │ ├── Montreal │ │ ├── Nassau │ │ ├── New_York │ │ ├── Nipigon │ │ ├── Noronha │ │ ├── Ojinaga │ │ ├── Panama │ │ ├── Phoenix │ │ ├── Recife │ │ ├── Regina │ │ ├── Resolute │ │ ├── Rosario │ │ ├── Santarem │ │ ├── Santiago │ │ ├── Shiprock │ │ ├── St_Johns │ │ ├── St_Kitts │ │ ├── St_Lucia │ │ ├── Tijuana │ │ ├── Toronto │ │ ├── Tortola │ │ ├── Virgin │ │ ├── Winnipeg │ │ ├── Yakutat │ │ ├── Anchorage │ │ ├── Araguaina │ │ ├── Boa_Vista │ │ ├── Catamarca │ │ ├── Chihuahua │ │ ├── Costa_Rica │ │ ├── Coyhaique │ │ ├── Fort_Wayne │ │ ├── Fortaleza │ │ ├── Glace_Bay │ │ ├── Goose_Bay │ │ ├── Grand_Turk │ │ ├── Guadeloupe │ │ ├── Guatemala │ │ ├── Guayaquil │ │ ├── Hermosillo │ │ ├── Kralendijk │ │ ├── Louisville │ │ ├── Martinique │ │ ├── Matamoros │ │ ├── Menominee │ │ ├── Metlakatla │ │ ├── Monterrey │ │ ├── Montevideo │ │ ├── Montserrat │ │ ├── Paramaribo │ │ ├── Porto_Acre │ │ ├── Rio_Branco │ │ ├── Sao_Paulo │ │ ├── St_Thomas │ │ ├── St_Vincent │ │ ├── Vancouver │ │ ├── Whitehorse │ │ ├── Blanc-Sablon │ │ ├── Buenos_Aires │ │ ├── Cambridge_Bay │ │ ├── Campo_Grande │ │ ├── Ciudad_Juarez │ │ ├── Coral_Harbour │ │ ├── Danmarkshavn │ │ ├── Dawson_Creek │ │ ├── El_Salvador │ │ ├── Fort_Nelson │ │ ├── Indianapolis │ │ ├── Los_Angeles │ │ ├── Lower_Princes │ │ ├── Mexico_City │ │ ├── Pangnirtung │ │ ├── Port_of_Spain │ │ ├── Porto_Velho │ │ ├── Puerto_Rico │ │ ├── Punta_Arenas │ │ ├── Rainy_River │ │ ├── Rankin_Inlet │ │ ├── Santa_Isabel │ │ ├── Santo_Domingo │ │ ├── Scoresbysund │ │ ├── St_Barthelemy │ │ ├── Swift_Current │ │ ├── Tegucigalpa │ │ ├── Thunder_Bay │ │ ├── Yellowknife │ │ ├── Bahia_Banderas │ │ └── Port-au-Prince │ ├── Antarctica │ │ ├── __init__.py │ │ ├── Casey │ │ ├── Davis │ │ ├── Syowa │ │ ├── Mawson │ │ ├── McMurdo │ │ ├── Palmer │ │ ├── Rothera │ │ ├── Vostok │ │ ├── Macquarie │ │ ├── South_Pole │ │ ├── DumontDUrville │ │ └── Troll │ ├── Atlantic │ │ ├── __init__.py │ │ ├── Azores │ │ ├── Bermuda │ │ ├── Canary │ │ ├── Faeroe │ │ ├── Faroe │ │ ├── Madeira │ │ ├── Stanley │ │ ├── Jan_Mayen │ │ ├── Reykjavik │ │ ├── St_Helena │ │ ├── Cape_Verde │ │ └── South_Georgia │ ├── Australia │ │ ├── __init__.py │ │ ├── ACT │ │ ├── LHI │ │ ├── NSW │ │ ├── Currie │ │ ├── Darwin │ │ ├── Eucla │ │ ├── Hobart │ │ ├── North │ │ ├── Perth │ │ ├── South │ │ ├── Sydney │ │ ├── West │ │ ├── Adelaide │ │ ├── Brisbane │ │ ├── Canberra │ │ ├── Lindeman │ │ ├── Tasmania │ │ ├── Victoria │ │ ├── Broken_Hill │ │ ├── Lord_Howe │ │ ├── Melbourne │ │ ├── Queensland │ │ └── Yancowinna │ ├── Pacific │ │ ├── __init__.py │ │ ├── Yap │ │ ├── Apia │ │ ├── Chuuk │ │ ├── Efate │ │ ├── Fiji │ │ ├── Guam │ │ ├── Nauru │ │ ├── Niue │ │ ├── Palau │ │ ├── Samoa │ │ ├── Truk │ │ ├── Wake │ │ ├── Auckland │ │ ├── Chatham │ │ ├── Easter │ │ ├── Fakaofo │ │ ├── Funafuti │ │ ├── Gambier │ │ ├── Honolulu │ │ ├── Johnston │ │ ├── Kanton │ │ ├── Kosrae │ │ ├── Majuro │ │ ├── Midway │ │ ├── Norfolk │ │ ├── Noumea │ │ ├── Pitcairn │ │ ├── Pohnpei │ │ ├── Ponape │ │ ├── Saipan │ │ ├── Tahiti │ │ ├── Tarawa │ │ ├── Wallis │ │ ├── Enderbury │ │ ├── Galapagos │ │ ├── Kiritimati │ │ ├── Kwajalein │ │ ├── Marquesas │ │ ├── Pago_Pago │ │ ├── Rarotonga │ │ ├── Tongatapu │ │ ├── Bougainville │ │ ├── Guadalcanal │ │ └── Port_Moresby │ ├── CET │ ├── EET │ ├── EST │ ├── GB │ ├── HST │ ├── MET │ ├── MST │ ├── NZ │ ├── PRC │ ├── ROC │ ├── ROK │ ├── WET │ ├── Cuba │ ├── Egypt │ ├── Eire │ ├── Iran │ ├── Israel │ ├── Japan │ ├── Libya │ ├── Navajo │ ├── Poland │ ├── Turkey │ ├── W-SU │ ├── CST6CDT │ ├── EST5EDT │ ├── GB-Eire │ ├── Hongkong │ ├── Iceland │ ├── Jamaica │ ├── MST7MDT │ ├── NZ-CHAT │ ├── PST8PDT │ ├── Portugal │ ├── Kwajalein │ ├── Singapore │ ├── GMT │ ├── GMT0 │ ├── UCT │ ├── UTC │ ├── Zulu │ ├── Factory │ ├── GMT+0 │ ├── GMT-0 │ ├── Greenwich │ └── Universal │ └── __init__.py ├── docs ├── requirements.txt └── conf.py ├── tag_release.sh ├── news.d ├── 2022c.md ├── 2021a.md ├── 2021e.md ├── 2023c.md ├── 2020f.md ├── 2023b.md ├── 2021d.md ├── 2021b.md ├── 2020c.md ├── 2025b.md ├── 2020d.md ├── 2022e.md ├── 2022d.md ├── 2025c.md ├── 2021c.md ├── 2022a.md ├── 2024a.md ├── 2025a.md ├── 2020a.md ├── 2020e.md ├── 2023d.md ├── 2022f.md ├── 2022g.md ├── 2020b.md ├── 2023a.md ├── 2022b.md └── 2021bpost.md ├── .github ├── dependabot.yml └── workflows │ ├── auto-tag.yml │ ├── publish.yml │ └── tests.yml ├── templates └── __init__.py.in ├── .readthedocs.yml ├── tests ├── test_version.py └── test_contents.py ├── pyproject.toml ├── .gitignore ├── LICENSE ├── .pre-commit-config.yaml ├── MANIFEST.in ├── README.rst ├── setup.cfg ├── tox.ini └── bump_version.py /VERSION: -------------------------------------------------------------------------------- 1 | 2025.3 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Arctic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Brazil/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Canada/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Chile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Mexico/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx>=3.0.0 2 | furo 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Indiana/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Kentucky/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/North_Dakota/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/CET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/CET -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/EET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/EET -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/EST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/EST -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/GB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/GB -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/HST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/HST -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/MET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/MET -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/MST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/MST -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/NZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/NZ -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/PRC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/PRC -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/ROC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/ROC -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/ROK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/ROK -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/WET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/WET -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Cuba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Cuba -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Egypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Egypt -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Eire -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Iran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Iran -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Israel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Israel -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Japan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Japan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Libya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Libya -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Navajo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Navajo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Poland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Poland -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Turkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Turkey -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/W-SU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/W-SU -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/CST6CDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/CST6CDT -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/EST5EDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/EST5EDT -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/GB-Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/GB-Eire -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Hongkong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Hongkong -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Iceland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Iceland -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Jamaica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Jamaica -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/MST7MDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/MST7MDT -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/NZ-CHAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/NZ-CHAT -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/PST8PDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/PST8PDT -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Portugal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Portugal -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/US/Samoa -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Juba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Juba -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Lome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Lome -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Aden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Aden -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Almaty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Almaty -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Amman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Amman -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Anadyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Anadyr -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Aqtau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Aqtau -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Aqtobe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Aqtobe -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Atyrau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Atyrau -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Baku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Baku -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Beirut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Beirut -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Brunei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Brunei -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Chita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Chita -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Dacca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Dacca -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Dhaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Dhaka -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Dili: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Dili -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Dubai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Dubai -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Gaza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Gaza -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Harbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Harbin -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Hebron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Hebron -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Hovd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Hovd -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Kabul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Kabul -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Kuwait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Kuwait -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Macao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Macao -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Macau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Macau -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Manila: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Manila -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Muscat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Muscat -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Omsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Omsk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Oral: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Oral -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Qatar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Qatar -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Riyadh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Riyadh -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Saigon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Saigon -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Seoul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Seoul -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Taipei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Taipei -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Tehran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Tehran -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Thimbu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Thimbu -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Tokyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Tokyo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Tomsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Tomsk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Urumqi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Urumqi -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Yangon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Yangon -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Brazil/Acre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Brazil/Acre -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Brazil/East: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Brazil/East -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Brazil/West: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Brazil/West -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Etc/GMT+1 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Etc/GMT+10 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Etc/GMT+11 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Etc/GMT+12 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Etc/GMT+2 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Etc/GMT+3 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Etc/GMT+4 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Etc/GMT+5 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Etc/GMT+6 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Etc/GMT+7 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Etc/GMT+8 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Etc/GMT+9 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Etc/GMT-10 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Etc/GMT-11 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Etc/GMT-12 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Etc/GMT-13 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Etc/GMT-14 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Etc/GMT-8 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Etc/GMT-9 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Kiev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Kiev -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Kyiv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Kyiv -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Oslo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Oslo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Riga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Riga -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Rome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Rome -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Mahe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Indian/Mahe -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Kwajalein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Kwajalein -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Yap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Yap -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Singapore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Singapore -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Alaska: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/US/Alaska -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Aleutian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/US/Aleutian -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Arizona: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/US/Arizona -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Central: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/US/Central -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Eastern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/US/Eastern -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Hawaii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/US/Hawaii -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Michigan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/US/Michigan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Mountain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/US/Mountain -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Pacific: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/US/Pacific -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Accra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Accra -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Asmara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Asmara -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Asmera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Asmera -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Bamako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Bamako -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Bangui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Bangui -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Banjul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Banjul -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Bissau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Bissau -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Cairo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Ceuta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Ceuta -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Dakar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Dakar -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Douala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Douala -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Harare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Harare -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Kigali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Kigali -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Lagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Lagos -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Luanda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Luanda -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Lusaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Lusaka -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Malabo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Malabo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Maputo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Maputo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Maseru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Maseru -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Niamey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Niamey -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Tunis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Tunis -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Adak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Adak -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Aruba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Aruba -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Atka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Atka -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Bahia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Bahia -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Belem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Belem -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Boise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Boise -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Jujuy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Jujuy -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Lima: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Lima -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Nome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Nome -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Nuuk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Nuuk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Sitka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Sitka -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Thule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Thule -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Ashgabat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Ashgabat -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Baghdad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Baghdad -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Bahrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Bahrain -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Bangkok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Bangkok -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Barnaul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Barnaul -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Bishkek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Bishkek -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Calcutta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Calcutta -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Colombo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Colombo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Damascus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Damascus -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Dushanbe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Dushanbe -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Irkutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Irkutsk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Istanbul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Istanbul -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Jakarta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Jakarta -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Jayapura: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Jayapura -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Karachi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Karachi -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Kashgar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Kashgar -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Katmandu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Katmandu -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Khandyga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Khandyga -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Kolkata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Kolkata -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Kuching: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Kuching -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Magadan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Magadan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Makassar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Makassar -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Nicosia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Nicosia -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Qostanay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Qostanay -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Rangoon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Rangoon -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Sakhalin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Sakhalin -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Shanghai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Shanghai -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Tashkent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Tashkent -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Tbilisi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Tbilisi -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Tel_Aviv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Tel_Aviv -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Thimphu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Thimphu -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Ust-Nera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Ust-Nera -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Yakutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Yakutsk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Yerevan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Yerevan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/ACT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/ACT -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/LHI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/LHI -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/NSW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/NSW -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Canada/Yukon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Canada/Yukon -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Athens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Athens -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Berlin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Berlin -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Dublin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Dublin -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Jersey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Jersey -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Kirov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Kirov -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Lisbon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Lisbon -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/London: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/London -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Madrid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Madrid -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Malta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Malta -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Minsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Minsk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Monaco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Monaco -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Moscow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Moscow -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Paris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Paris -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Prague: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Prague -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Samara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Samara -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Skopje: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Skopje -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Sofia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Sofia -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Tirane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Tirane -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Vaduz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Vaduz -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Vienna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Vienna -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Warsaw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Warsaw -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Zagreb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Zagreb -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Zurich: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Zurich -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Chagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Indian/Chagos -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Cocos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Indian/Cocos -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Comoro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Indian/Comoro -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Apia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Apia -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Chuuk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Chuuk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Efate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Efate -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Fiji: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Fiji -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Guam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Guam -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Nauru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Nauru -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Niue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Niue -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Palau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Palau -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Samoa -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Truk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Truk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Wake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Wake -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Abidjan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Abidjan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Algiers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Algiers -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Blantyre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Blantyre -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Bujumbura: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Bujumbura -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Conakry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Conakry -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Djibouti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Djibouti -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/El_Aaiun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/El_Aaiun -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Freetown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Freetown -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Gaborone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Gaborone -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Kampala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Kampala -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Khartoum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Khartoum -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Kinshasa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Kinshasa -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Mbabane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Mbabane -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Mogadishu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Mogadishu -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Monrovia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Monrovia -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Nairobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Nairobi -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Ndjamena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Ndjamena -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Sao_Tome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Sao_Tome -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Timbuktu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Timbuktu -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Tripoli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Tripoli -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Windhoek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Windhoek -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Anguilla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Anguilla -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Antigua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Antigua -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Asuncion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Asuncion -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Atikokan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Atikokan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Barbados: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Barbados -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Belize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Belize -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Bogota: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Bogota -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Cancun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Cancun -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Caracas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Caracas -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Cayenne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Cayenne -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Cayman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Cayman -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Chicago: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Chicago -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Cordoba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Cordoba -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Creston: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Creston -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Cuiaba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Cuiaba -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Curacao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Curacao -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Dawson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Dawson -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Denver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Denver -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Detroit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Detroit -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Dominica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Dominica -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Edmonton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Edmonton -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Eirunepe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Eirunepe -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Ensenada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Ensenada -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Godthab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Godthab -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Grenada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Grenada -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Guyana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Guyana -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Halifax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Halifax -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Havana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Havana -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Inuvik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Inuvik -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Iqaluit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Iqaluit -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Jamaica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Jamaica -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Juneau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Juneau -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Knox_IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Knox_IN -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/La_Paz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/La_Paz -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Maceio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Maceio -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Managua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Managua -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Manaus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Manaus -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Marigot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Marigot -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Mazatlan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Mazatlan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Mendoza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Mendoza -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Merida: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Merida -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Miquelon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Miquelon -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Moncton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Moncton -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Montreal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Montreal -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Nassau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Nassau -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/New_York: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/New_York -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Nipigon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Nipigon -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Noronha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Noronha -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Ojinaga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Ojinaga -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Panama: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Panama -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Phoenix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Phoenix -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Recife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Recife -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Regina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Regina -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Resolute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Resolute -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Rosario: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Rosario -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Santarem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Santarem -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Santiago: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Santiago -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Shiprock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Shiprock -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/St_Johns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/St_Johns -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/St_Kitts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/St_Kitts -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/St_Lucia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/St_Lucia -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Tijuana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Tijuana -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Toronto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Toronto -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Tortola: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Tortola -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Virgin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Virgin -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Winnipeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Winnipeg -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Yakutat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Yakutat -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/Casey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Antarctica/Casey -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/Davis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Antarctica/Davis -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/Syowa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Antarctica/Syowa -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Ashkhabad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Ashkhabad -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Choibalsan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Choibalsan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Chongqing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Chongqing -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Chungking: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Chungking -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Famagusta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Famagusta -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Ho_Chi_Minh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Ho_Chi_Minh -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Hong_Kong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Hong_Kong -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Jerusalem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Jerusalem -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Kamchatka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Kamchatka -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Kathmandu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Kathmandu -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Krasnoyarsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Krasnoyarsk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Novosibirsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Novosibirsk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Phnom_Penh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Phnom_Penh -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Pontianak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Pontianak -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Pyongyang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Pyongyang -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Qyzylorda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Qyzylorda -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Samarkand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Samarkand -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Singapore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Singapore -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Ulaanbaatar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Ulaanbaatar -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Ulan_Bator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Ulan_Bator -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Vientiane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Vientiane -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Vladivostok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Vladivostok -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/Azores: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Atlantic/Azores -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/Bermuda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Atlantic/Bermuda -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/Canary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Atlantic/Canary -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/Faeroe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Atlantic/Faeroe -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/Faroe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Atlantic/Faroe -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/Madeira: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Atlantic/Madeira -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/Stanley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Atlantic/Stanley -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Currie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/Currie -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/Darwin -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Eucla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/Eucla -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Hobart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/Hobart -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/North: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/North -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Perth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/Perth -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/South: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/South -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Sydney: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/Sydney -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/West: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/West -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Brazil/DeNoronha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Brazil/DeNoronha -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Canada/Atlantic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Canada/Atlantic -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Canada/Central: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Canada/Central -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Canada/Eastern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Canada/Eastern -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Canada/Mountain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Canada/Mountain -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Canada/Pacific: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Canada/Pacific -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Amsterdam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Amsterdam -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Andorra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Andorra -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Astrakhan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Astrakhan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Belfast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Belfast -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Belgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Belgrade -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Brussels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Brussels -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Bucharest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Bucharest -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Budapest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Budapest -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Busingen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Busingen -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Chisinau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Chisinau -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Gibraltar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Gibraltar -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Guernsey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Guernsey -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Helsinki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Helsinki -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Istanbul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Istanbul -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Ljubljana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Ljubljana -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Mariehamn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Mariehamn -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Nicosia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Nicosia -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Podgorica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Podgorica -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Sarajevo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Sarajevo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Saratov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Saratov -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Stockholm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Stockholm -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Tallinn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Tallinn -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Tiraspol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Tiraspol -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Ulyanovsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Ulyanovsk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Uzhgorod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Uzhgorod -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Vatican: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Vatican -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Vilnius: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Vilnius -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Volgograd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Volgograd -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Christmas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Indian/Christmas -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Kerguelen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Indian/Kerguelen -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Maldives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Indian/Maldives -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Mauritius: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Indian/Mauritius -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Mayotte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Indian/Mayotte -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Reunion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Indian/Reunion -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Mexico/BajaNorte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Mexico/BajaNorte -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Mexico/BajaSur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Mexico/BajaSur -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Mexico/General: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Mexico/General -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Auckland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Auckland -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Chatham: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Chatham -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Easter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Easter -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Fakaofo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Fakaofo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Funafuti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Funafuti -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Gambier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Gambier -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Honolulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Honolulu -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Johnston: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Johnston -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Kanton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Kanton -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Kosrae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Kosrae -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Majuro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Majuro -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Midway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Midway -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Norfolk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Norfolk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Noumea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Noumea -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Pitcairn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Pitcairn -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Pohnpei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Pohnpei -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Ponape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Ponape -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Saipan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Saipan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Tahiti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Tahiti -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Tarawa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Tarawa -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Wallis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Wallis -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/East-Indiana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/US/East-Indiana -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Addis_Ababa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Addis_Ababa -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Brazzaville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Brazzaville -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Casablanca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Casablanca -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Libreville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Libreville -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Lubumbashi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Lubumbashi -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Nouakchott: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Nouakchott -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Ouagadougou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Ouagadougou -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Porto-Novo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Porto-Novo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Anchorage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Anchorage -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Araguaina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Araguaina -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Boa_Vista: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Boa_Vista -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Catamarca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Catamarca -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Chihuahua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Chihuahua -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Costa_Rica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Costa_Rica -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Coyhaique: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Coyhaique -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Fort_Wayne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Fort_Wayne -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Fortaleza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Fortaleza -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Glace_Bay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Glace_Bay -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Goose_Bay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Goose_Bay -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Grand_Turk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Grand_Turk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Guadeloupe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Guadeloupe -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Guatemala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Guatemala -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Guayaquil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Guayaquil -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Hermosillo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Hermosillo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Kralendijk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Kralendijk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Louisville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Louisville -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Martinique: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Martinique -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Matamoros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Matamoros -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Menominee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Menominee -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Metlakatla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Metlakatla -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Monterrey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Monterrey -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Montevideo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Montevideo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Montserrat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Montserrat -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Paramaribo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Paramaribo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Porto_Acre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Porto_Acre -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Rio_Branco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Rio_Branco -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Sao_Paulo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Sao_Paulo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/St_Thomas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/St_Thomas -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/St_Vincent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/St_Vincent -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Vancouver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Vancouver -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Whitehorse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Whitehorse -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/Mawson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Antarctica/Mawson -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/McMurdo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Antarctica/McMurdo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/Palmer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Antarctica/Palmer -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/Rothera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Antarctica/Rothera -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/Vostok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Antarctica/Vostok -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Kuala_Lumpur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Kuala_Lumpur -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Novokuznetsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Novokuznetsk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Srednekolymsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Srednekolymsk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Ujung_Pandang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Ujung_Pandang -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Yekaterinburg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Asia/Yekaterinburg -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/Jan_Mayen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Atlantic/Jan_Mayen -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/Reykjavik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Atlantic/Reykjavik -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/St_Helena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Atlantic/St_Helena -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Adelaide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/Adelaide -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Brisbane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/Brisbane -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Canberra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/Canberra -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Lindeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/Lindeman -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Tasmania: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/Tasmania -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Victoria: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/Victoria -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Chile/Continental: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Chile/Continental -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Chile/EasterIsland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Chile/EasterIsland -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Bratislava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Bratislava -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Copenhagen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Copenhagen -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Isle_of_Man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Isle_of_Man -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Kaliningrad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Kaliningrad -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Luxembourg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Luxembourg -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/San_Marino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/San_Marino -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Simferopol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Simferopol -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Zaporozhye: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Europe/Zaporozhye -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Enderbury: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Enderbury -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Galapagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Galapagos -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Kiritimati: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Kiritimati -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Kwajalein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Kwajalein -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Marquesas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Marquesas -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Pago_Pago: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Pago_Pago -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Rarotonga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Rarotonga -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Tongatapu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Tongatapu -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Indiana-Starke: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/US/Indiana-Starke -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Dar_es_Salaam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Dar_es_Salaam -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Johannesburg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Africa/Johannesburg -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Blanc-Sablon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Blanc-Sablon -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Buenos_Aires: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Buenos_Aires -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Cambridge_Bay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Cambridge_Bay -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Campo_Grande: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Campo_Grande -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Ciudad_Juarez: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Ciudad_Juarez -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Coral_Harbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Coral_Harbour -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Danmarkshavn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Danmarkshavn -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Dawson_Creek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Dawson_Creek -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/El_Salvador: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/El_Salvador -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Fort_Nelson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Fort_Nelson -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Indiana/Knox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Indiana/Knox -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Indiana/Vevay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Indiana/Vevay -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Indianapolis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Indianapolis -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Los_Angeles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Los_Angeles -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Lower_Princes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Lower_Princes -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Mexico_City: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Mexico_City -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Pangnirtung: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Pangnirtung -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Port_of_Spain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Port_of_Spain -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Porto_Velho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Porto_Velho -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Puerto_Rico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Puerto_Rico -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Punta_Arenas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Punta_Arenas -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Rainy_River: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Rainy_River -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Rankin_Inlet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Rankin_Inlet -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Santa_Isabel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Santa_Isabel -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Santo_Domingo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Santo_Domingo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Scoresbysund: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Scoresbysund -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/St_Barthelemy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/St_Barthelemy -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Swift_Current: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Swift_Current -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Tegucigalpa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Tegucigalpa -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Thunder_Bay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Thunder_Bay -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Yellowknife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Yellowknife -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/Macquarie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Antarctica/Macquarie -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/South_Pole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Antarctica/South_Pole -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Arctic/Longyearbyen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Arctic/Longyearbyen -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/Cape_Verde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Atlantic/Cape_Verde -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Broken_Hill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/Broken_Hill -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Lord_Howe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/Lord_Howe -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Melbourne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/Melbourne -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Queensland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/Queensland -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Yancowinna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Australia/Yancowinna -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Canada/Newfoundland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Canada/Newfoundland -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Canada/Saskatchewan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Canada/Saskatchewan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Antananarivo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Indian/Antananarivo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Bougainville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Bougainville -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Guadalcanal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Guadalcanal -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Port_Moresby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Pacific/Port_Moresby -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/Jujuy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Argentina/Jujuy -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/Salta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Argentina/Salta -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Bahia_Banderas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Bahia_Banderas -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Indiana/Marengo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Indiana/Marengo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Indiana/Winamac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Indiana/Winamac -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Port-au-Prince: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Port-au-Prince -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/South_Georgia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Atlantic/South_Georgia -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/Cordoba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Argentina/Cordoba -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/La_Rioja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Argentina/La_Rioja -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/Mendoza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Argentina/Mendoza -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/San_Juan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Argentina/San_Juan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/San_Luis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Argentina/San_Luis -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/Tucuman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Argentina/Tucuman -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/Ushuaia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Argentina/Ushuaia -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Indiana/Petersburg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Indiana/Petersburg -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Indiana/Tell_City: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Indiana/Tell_City -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Indiana/Vincennes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Indiana/Vincennes -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/DumontDUrville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/Antarctica/DumontDUrville -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/GMT: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/GMT0: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/UCT: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/UTC: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Zulu: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/Catamarca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Argentina/Catamarca -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Indiana/Indianapolis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Indiana/Indianapolis -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Kentucky/Louisville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Kentucky/Louisville -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Kentucky/Monticello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Kentucky/Monticello -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/North_Dakota/Beulah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/North_Dakota/Beulah -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/North_Dakota/Center: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/North_Dakota/Center -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+0: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-0: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT0: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/UCT: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/UTC: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/Zulu: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Factory: -------------------------------------------------------------------------------- 1 | TZif2TZif2-00 2 | <-00>0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/GMT+0: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/GMT-0: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Greenwich: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Universal: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/Buenos_Aires: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Argentina/Buenos_Aires -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/Rio_Gallegos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Argentina/Rio_Gallegos -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/North_Dakota/New_Salem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/North_Dakota/New_Salem -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-1: -------------------------------------------------------------------------------- 1 | TZif2TZif2+01 2 | <+01>-1 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-2: -------------------------------------------------------------------------------- 1 | TZif2TZif2 +02 2 | <+02>-2 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-3: -------------------------------------------------------------------------------- 1 | TZif2TZif2*0+03 2 | <+03>-3 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-4: -------------------------------------------------------------------------------- 1 | TZif2TZif28@+04 2 | <+04>-4 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-5: -------------------------------------------------------------------------------- 1 | TZif2TZif2FP+05 2 | <+05>-5 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-6: -------------------------------------------------------------------------------- 1 | TZif2TZif2T`+06 2 | <+06>-6 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-7: -------------------------------------------------------------------------------- 1 | TZif2TZif2bp+07 2 | <+07>-7 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/Greenwich: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/Universal: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/ComodRivadavia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/master/src/tzdata/zoneinfo/America/Argentina/ComodRivadavia -------------------------------------------------------------------------------- /tag_release.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | set -e 3 | VERSION=$(0<+02>-2,M3.5.0/1,M10.5.0/3 3 | -------------------------------------------------------------------------------- /news.d/2022c.md: -------------------------------------------------------------------------------- 1 | # Version 2022.3 2 | Upstream version 2022c released 2022-08-16T00:47:18+00:00 3 | 4 | ## Briefly: 5 | 6 | Work around awk bug in FreeBSD, macOS, etc. Improve tzselect on intercontinental 7 | Zones. -------------------------------------------------------------------------------- /news.d/2021a.md: -------------------------------------------------------------------------------- 1 | # Version 2021.1 2 | Upstream version 2021a released 2021-01-24T18:54:57+00:00 3 | 4 | ## Changes to future timestamps 5 | 6 | South Sudan changes from +03 to +02 on 2021-02-01 at 00:00. (Thanks to Steffen 7 | Thorsen.) -------------------------------------------------------------------------------- /news.d/2021e.md: -------------------------------------------------------------------------------- 1 | # Version 2021.5 2 | Upstream version 2021e released 2021-10-22T01:41:00+00:00 3 | 4 | ## Changes to future timestamps 5 | 6 | Palestine will fall back 10-29 (not 10-30) at 01:00. (Thanks to P Chan and Heba 7 | Hemad.) -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "github-actions" 4 | directory: "/" 5 | schedule: 6 | interval: monthly 7 | groups: 8 | actions: 9 | patterns: 10 | - "*" -------------------------------------------------------------------------------- /news.d/2023c.md: -------------------------------------------------------------------------------- 1 | # Version 2023.3 2 | Upstream version 2023c released 2023-03-28T19:42:14+00:00 3 | 4 | ## Changes to past and future timestamps 5 | 6 | Model Lebanon's DST chaos by reverting data to tzdb 2023a. (Thanks to Rany Hany 7 | for the heads-up.) -------------------------------------------------------------------------------- /news.d/2020f.md: -------------------------------------------------------------------------------- 1 | # Version 2020.6 2 | Upstream version 2020f released 2020-12-29T08:17:46+00:00 3 | 4 | ## Change to build procedure 5 | 6 | 'make rearguard_tarballs' no longer generates a bad rearguard.zi, fixing a 2020e 7 | bug. (Problem reported by Deborah Goldsmith.) -------------------------------------------------------------------------------- /src/tzdata/__init__.py: -------------------------------------------------------------------------------- 1 | # IANA versions like 2020a are not valid PEP 440 identifiers; the recommended 2 | # way to translate the version is to use YYYY.n where `n` is a 0-based index. 3 | __version__ = "2025.3" 4 | 5 | # This exposes the original IANA version number. 6 | IANA_VERSION = "2025c" 7 | -------------------------------------------------------------------------------- /news.d/2023b.md: -------------------------------------------------------------------------------- 1 | # Version 2023.2 2 | Upstream version 2023b released 2023-03-24T02:50:38+00:00 3 | 4 | ## Briefly: 5 | 6 | Lebanon delays the start of DST this year. 7 | 8 | ## Changes to future timestamps 9 | 10 | This year Lebanon springs forward April 20/21 not March 25/26. (Thanks to 11 | Saadallah Itani.) -------------------------------------------------------------------------------- /templates/__init__.py.in: -------------------------------------------------------------------------------- 1 | # IANA versions like 2020a are not valid PEP 440 identifiers; the recommended 2 | # way to translate the version is to use YYYY.n where `n` is a 0-based index. 3 | __version__ = %%PACKAGE_VERSION%% 4 | 5 | # This exposes the original IANA version number. 6 | IANA_VERSION = %%IANA_VERSION%% 7 | -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- 1 | version: 2 # Required in order to install with pip 2 | 3 | build: 4 | os: "ubuntu-22.04" 5 | tools: 6 | python: "3.11" 7 | 8 | sphinx: 9 | configuration: "docs/conf.py" 10 | 11 | python: 12 | install: 13 | - method: "pip" 14 | path: "." 15 | - requirements: docs/requirements.txt 16 | -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | import tzdata 4 | 5 | REPO_ROOT = os.path.split(os.path.split(__file__)[0])[0] 6 | VERSION_FILE = os.path.join(REPO_ROOT, "VERSION") 7 | 8 | 9 | def test_version(): 10 | with open(VERSION_FILE, "rt") as f: 11 | version_from_file = f.read() 12 | 13 | assert version_from_file == tzdata.__version__ 14 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["setuptools>=40.8.0", "wheel"] 3 | build-backend = "setuptools.build_meta" 4 | 5 | [tool.isort] 6 | atomic=true 7 | force_grid_wrap=0 8 | include_trailing_comma=true 9 | known_first_party=["tzdata"] 10 | extra_standard_library=["zoneinfo"] 11 | known_third_party=["click", "parver", "pytest", "requests"] 12 | multi_line_output=3 13 | use_parentheses=true 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | 5 | # Distribution / packaging 6 | build/ 7 | dist/ 8 | *.egg-info/ 9 | .eggs 10 | 11 | # Sphinx documentation 12 | docs/_build/ 13 | docs/_output/ 14 | 15 | # Testing 16 | .cache 17 | .hypothesis_cache 18 | .mypy_cache 19 | .pytest_cache 20 | .tox 21 | .pytype 22 | 23 | # Temporary files 24 | tmp/ 25 | 26 | venv/ 27 | .venv/ 28 | -------------------------------------------------------------------------------- /news.d/2021d.md: -------------------------------------------------------------------------------- 1 | # Version 2021.4 2 | Upstream version 2021d released 2021-10-15T20:48:18+00:00 3 | 4 | ## Briefly: 5 | 6 | Fiji suspends DST for the 2021/2022 season. 'zic -r' marks unspecified 7 | timestamps with "-00". 8 | 9 | ## Changes to future timestamps 10 | 11 | Fiji will suspend observance of DST for the 2021/2022 season. Assume for now 12 | that it will return next year. (Thanks to Jashneel Kumar and P Chan.) -------------------------------------------------------------------------------- /news.d/2021b.md: -------------------------------------------------------------------------------- 1 | # Version 2021.2 2 | Upstream version 2021b released 2021-09-24T23:23:00+00:00 3 | 4 | ## Briefly: 5 | 6 | This is an intermediate release that cherry-picks only the changes to Jordan and 7 | Samoa's DST. It will not match upstream 2021b, which includes many other 8 | changes. 9 | 10 | ## Changes to future timestamps 11 | 12 | Jordan now starts DST on February's last Thursday. (Thanks to Steffen Thorsen.) 13 | 14 | Samoa no longer observes DST. (Thanks to Geoffrey D. Bennett.) -------------------------------------------------------------------------------- /news.d/2020c.md: -------------------------------------------------------------------------------- 1 | # Version 2020.3 2 | Upstream version 2020c released 2020-10-16T18:15:53+00:00 3 | 4 | ## Briefly: 5 | 6 | Fiji starts DST later than usual, on 2020-12-20. 7 | 8 | ## Changes to future timestamps 9 | 10 | Fiji will start DST on 2020-12-20, instead of 2020-11-08 as previously 11 | predicted. DST will still end on 2021-01-17. (Thanks to Raymond Kumar and Alan 12 | Mintz.) Assume for now that the later-than-usual start date is a one-time 13 | departure from the recent pattern. 14 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache Software License 2.0 2 | 3 | Copyright (c) 2020, Paul Ganssle (Google) 4 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); 6 | you may not use this file except in compliance with the License. 7 | You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | repos: 2 | - repo: https://github.com/psf/black 3 | rev: 25.9.0 4 | hooks: 5 | - id: black 6 | language_version: "python3.12" 7 | 8 | - repo: https://github.com/pycqa/isort 9 | rev: 7.0.0 10 | hooks: 11 | - id: isort 12 | additional_dependencies: [ toml ] 13 | language_version: "python3.12" 14 | 15 | - repo: https://github.com/pre-commit/pre-commit-hooks 16 | rev: v6.0.0 17 | hooks: 18 | - id: trailing-whitespace 19 | - id: debug-statements 20 | 21 | - repo: https://github.com/asottile/setup-cfg-fmt 22 | rev: v3.1.0 23 | hooks: 24 | - id: setup-cfg-fmt 25 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | # All the stuff to include 2 | include VERSION 3 | include tox.ini 4 | include LICENSE *.md *.rst *.toml *.yml *.yaml *.ini *.sh *.cfg 5 | recursive-include licenses * 6 | recursive-include src/tzdata * 7 | recursive-include templates * 8 | graft .github 9 | 10 | recursive-include tests *.py 11 | 12 | # Documentation 13 | recursive-include docs *.png 14 | recursive-include docs *.svg 15 | recursive-include docs *.py 16 | recursive-include docs *.rst 17 | prune docs/_build 18 | prune docs/_output 19 | 20 | # Files and directories incidentally here 21 | prune build/ 22 | prune dist/ 23 | prune tmp/ 24 | prune src/*.egg-info 25 | global-exclude *.pyc *.pyo 26 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | tzdata: Python package providing IANA time zone data 2 | ==================================================== 3 | 4 | This is a Python package containing ``zic``-compiled binaries for the IANA time 5 | zone database. It is intended to be a fallback for systems that do not have 6 | system time zone data installed (or don't have it installed in a standard 7 | location), as a part of `PEP 615 `_ 8 | 9 | This repository generates a ``pip``-installable package, published on PyPI as 10 | `tzdata `_. 11 | 12 | For more information, see `the documentation `_. 13 | -------------------------------------------------------------------------------- /news.d/2025b.md: -------------------------------------------------------------------------------- 1 | # Version 2025.2 2 | Upstream version 2025b released 2025-03-22T20:40:46+00:00 3 | 4 | ## Briefly: 5 | 6 | New zone for Aysén Region in Chile which moves from -04/-03 to -03. 7 | 8 | ## Changes to future timestamps 9 | 10 | Chile's Aysén Region moves from -04/-03 to -03 year-round, joining Magallanes 11 | Region. The region will not change its clocks on 2025-04-05 at 24:00, diverging 12 | from America/Santiago and creating a new zone America/Coyhaique. (Thanks to 13 | Yonathan Dossow.) Model this as a change to standard offset effective 14 | 2025-03-20. 15 | 16 | ## Changes to past timestamps 17 | 18 | Iran switched from +04 to +0330 on 1978-11-10 at 24:00, not at year end. 19 | (Thanks to Roozbeh Pournader.) -------------------------------------------------------------------------------- /news.d/2020d.md: -------------------------------------------------------------------------------- 1 | # Version 2020.4 2 | Upstream version 2020d released 2020-10-21T18:24:13+00:00 3 | 4 | ## Briefly: 5 | 6 | Palestine ends DST earlier than predicted, on 2020-10-24. 7 | 8 | ## Changes to past and future timestamps 9 | 10 | Palestine ends DST on 2020-10-24 at 01:00, instead of 2020-10-31 as previously 11 | predicted (thanks to Sharef Mustafa.) Its 2019-10-26 fall-back was at 00:00, 12 | not 01:00 (thanks to Steffen Thorsen.) Its 2015-10-23 transition was at 01:00 13 | not 00:00, and its spring 2020 transition was on March 28 at 00:00, not March 27 14 | (thanks to Pierre Cashon.) This affects Asia/Gaza and Asia/Hebron. Assume 15 | future spring and fall transitions will be on the Saturday preceding the last 16 | Sunday of March and October, respectively. -------------------------------------------------------------------------------- /news.d/2022e.md: -------------------------------------------------------------------------------- 1 | # Version 2022.5 2 | Upstream version 2022e released 2022-10-11T18:13:02+00:00 3 | 4 | ## Briefly: 5 | 6 | Jordan and Syria switch from +02/+03 with DST to year-round +03. 7 | 8 | ## Changes to future timestamps 9 | 10 | Jordan and Syria are abandoning the DST regime and are changing to permanent 11 | +03, so they will not fall back from +03 to +02 on 2022-10-28. (Thanks to 12 | Steffen Thorsen and Issam Al-Zuwairi.) 13 | 14 | ## Changes to past timestamps 15 | 16 | On 1922-01-01 Tijuana adopted standard time at 00:00, not 01:00. 17 | 18 | ## Changes to past time zone abbreviations and DST flags 19 | 20 | The temporary advancement of clocks in central Mexico in summer 1931 is now 21 | treated as daylight saving time, instead of as two changes to standard time. -------------------------------------------------------------------------------- /news.d/2022d.md: -------------------------------------------------------------------------------- 1 | # Version 2022.4 2 | Upstream version 2022d released 2022-09-23T19:02:57+00:00 3 | 4 | ## Briefly: 5 | 6 | Palestine transitions are now Saturdays at 02:00. Simplify three Ukraine zones 7 | into one. 8 | 9 | ## Changes to future timestamps 10 | 11 | Palestine now springs forward and falls back at 02:00 on the first Saturday on 12 | or after March 24 and October 24, respectively. This means 2022 falls back 10-29 13 | at 02:00, not 10-28 at 01:00. (Thanks to Heba Hamad.) 14 | 15 | ## Changes to past timestamps 16 | 17 | Simplify three Ukraine zones to one, since the post-1970 differences seem to 18 | have been imaginary. Move Europe/Uzhgorod and Europe/Zaporozhye to 'backzone'; 19 | backward-compatibility links still work, albeit with different timestamps before 20 | October 1991. -------------------------------------------------------------------------------- /news.d/2025c.md: -------------------------------------------------------------------------------- 1 | # Version 2025.3 2 | Upstream version 2025c released 2025-12-10T22:42:37+00:00 3 | 4 | ## Briefly: 5 | 6 | Several code changes for compatibility with FreeBSD. 7 | 8 | ## Changes to past timestamps 9 | 10 | Baja California agreed with California’s DST rules in 1953 and in 1961 through 11 | 1975, instead of observing standard time all year. (Thanks to Alois Treindl.) 12 | 13 | ## Changes to commentary 14 | 15 | The leapseconds file contains commentary about the IERS and NIST last-modified 16 | and expiration timestamps for leap second data. (Thanks to Judah Levine.) 17 | 18 | Commentary now also uses characters from the set –‘’“”•≤ as this can be useful 19 | and should work with current applications. This also affects data in 20 | iso3166.tab and zone1970.tab, which now contain strings like “Côte d’Ivoire” 21 | instead of “Côte d'Ivoire”. -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | name = tzdata 3 | version = file: VERSION 4 | description = Provider of IANA time zone data 5 | long_description = file: README.rst 6 | long_description_content_type = text/x-rst 7 | url = https://github.com/python/tzdata 8 | author = Python Software Foundation 9 | author_email = datetime-sig@python.org 10 | license = Apache-2.0 11 | license_files = 12 | LICENSE 13 | licenses/LICENSE_APACHE 14 | classifiers = 15 | Development Status :: 4 - Beta 16 | Intended Audience :: Developers 17 | Programming Language :: Python :: 2 18 | Programming Language :: Python :: 3 19 | project_urls = 20 | Bug Reports = https://github.com/python/tzdata/issues 21 | Source = https://github.com/python/tzdata 22 | Documentation = https://tzdata.readthedocs.io 23 | 24 | [options] 25 | packages = tzdata 26 | python_requires = >=2 27 | include_package_data = True 28 | package_dir = 29 | =src 30 | 31 | [bdist_wheel] 32 | universal = 1 33 | -------------------------------------------------------------------------------- /news.d/2021c.md: -------------------------------------------------------------------------------- 1 | # Version 2021.3 2 | Upstream version 2021c released 2021-10-01T21:21:49+00:00 3 | 4 | ## Briefly: 5 | 6 | Revert most 2021b changes to 'backward'. Fix 'zic -b fat' bug in pre-1970 32-bit 7 | data. Fix two Link line typos. Distribute SECURITY file. 8 | 9 | This release is intended as a bugfix release, to fix compatibility problems and 10 | typos reported since 2021b was released. 11 | 12 | ## Changes to Link directives 13 | 14 | Revert almost all of 2021b's changes to the 'backward' file, by moving Link 15 | directives back to where they were in 2021a. Although 'zic' doesn't care which 16 | source file contains a Link directive, some downstream uses ran into trouble 17 | with the move. (Problem reported by Stephen Colebourne for Joda-Time.) 18 | 19 | Fix typo that linked Atlantic/Jan_Mayen to the wrong location (problem reported 20 | by Chris Walton). 21 | 22 | Fix 'backzone' typo that linked America/Virgin to the wrong location (problem 23 | reported by Michael Deckers). 24 | 25 | ## Changes to documentation 26 | 27 | Distribute the SECURITY file (problem reported by Andreas Radke). -------------------------------------------------------------------------------- /news.d/2022a.md: -------------------------------------------------------------------------------- 1 | # Version 2022.1 2 | Upstream version 2022a released 2022-03-16T06:02:01+00:00 3 | 4 | ## Briefly: 5 | 6 | Palestine will spring forward on 2022-03-27, not -03-26. zdump -v now outputs 7 | better failure indications. Bug fixes for code that reads corrupted TZif data. 8 | 9 | ## Changes to future timestamps 10 | 11 | Palestine will spring forward on 2022-03-27, not 2022-03-26. (Thanks to Heba 12 | Hamad.) Predict future transitions for first Sunday >= March 25. Additionally, 13 | predict fallbacks to be the first Friday on or after October 23, not October's 14 | last Friday, to be more consistent with recent practice. The first differing 15 | fallback prediction is on 2025-10-24, not 2025-10-31. 16 | 17 | ## Changes to past timestamps 18 | 19 | From 1992 through spring 1996, Ukraine's DST transitions were at 02:00 standard 20 | time, not at 01:00 UTC. (Thanks to Alois Treindl.) 21 | 22 | Chile's Santiago Mean Time and its LMT precursor have been adjusted eastward by 23 | 1 second to align with past and present law. 24 | 25 | ## Changes to commentary 26 | 27 | Add several references for Chile's 1946/1947 transitions, some of which only 28 | affected portions of the country. -------------------------------------------------------------------------------- /.github/workflows/auto-tag.yml: -------------------------------------------------------------------------------- 1 | name: Auto Tag on Version Bump 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | paths: 8 | - VERSION 9 | 10 | jobs: 11 | tag-repo: 12 | runs-on: ubuntu-latest 13 | permissions: 14 | contents: write 15 | steps: 16 | - name: Check out repository 17 | uses: actions/checkout@v5 18 | 19 | - name: Get current version 20 | id: version 21 | run: | 22 | VERSION=$(cat VERSION) 23 | echo "version=$VERSION" >> $GITHUB_OUTPUT 24 | 25 | - name: Check if tag already exists 26 | id: checktag 27 | run: | 28 | if git rev-parse "v${{ steps.version.outputs.version }}" >/dev/null 2>&1; then 29 | echo "skip=true" >> $GITHUB_OUTPUT 30 | else 31 | echo "skip=false" >> $GITHUB_OUTPUT 32 | fi 33 | 34 | - name: Push tag 35 | if: steps.checktag.outputs.skip == 'false' 36 | run: | 37 | git config user.name "github-actions[bot]" 38 | git config user.email "41898282+github-actions[bot]@users.noreply.github.com" 39 | git tag "v${{ steps.version.outputs.version }}" 40 | git push origin "v${{ steps.version.outputs.version }}" 41 | -------------------------------------------------------------------------------- /news.d/2024a.md: -------------------------------------------------------------------------------- 1 | # Version 2024.1 2 | Upstream version 2024a released 2024-02-01T17:28:56+00:00 3 | 4 | ## Briefly: 5 | 6 | Kazakhstan unifies on UTC+5 beginning 2024-03-01. Palestine springs forward a 7 | week later after Ramadan. zic no longer pretends to support indefinite-past DST. 8 | localtime no longer mishandles Ciudad Juárez in 2422. 9 | 10 | ## Changes to future timestamps 11 | 12 | Kazakhstan unifies on UTC+5. This affects Asia/Almaty and Asia/Qostanay which 13 | together represent the eastern portion of the country that will transition from 14 | UTC+6 on 2024-03-01 at 00:00 to join the western portion. (Thanks to Zhanbolat 15 | Raimbekov.) 16 | 17 | Palestine springs forward a week later than previously predicted in 2024 and 18 | 2025. (Thanks to Heba Hamad.) Change spring-forward predictions to the second 19 | Saturday after Ramadan, not the first; this also affects other predictions 20 | starting in 2039. 21 | 22 | ## Changes to past timestamps 23 | 24 | Asia/Ho_Chi_Minh's 1955-07-01 transition occurred at 01:00 not 00:00. (Thanks 25 | to Đoàn Trần Công Danh.) 26 | 27 | From 1947 through 1949, Toronto's transitions occurred at 02:00 not 00:00. 28 | (Thanks to Chris Walton.) 29 | 30 | In 1911 Miquelon adopted standard time on June 15, not May 15. 31 | 32 | ## Changes to documentation 33 | 34 | The strftime man page documents which struct tm members affect which conversion 35 | specs, and that tzset is called. (Problems reported by Robert Elz and Steve 36 | Summit.) -------------------------------------------------------------------------------- /news.d/2025a.md: -------------------------------------------------------------------------------- 1 | # Version 2025.1 2 | Upstream version 2025a released 2025-01-15T18:47:24+00:00 3 | 4 | ## Briefly: 5 | 6 | Paraguay adopts permanent -03 starting spring 2024. Improve pre-1991 data for 7 | the Philippines. Etc/Unknown is now reserved. 8 | 9 | ## Changes to future timestamps 10 | 11 | Paraguay will stop changing its clocks after the spring-forward transition on 12 | 2024-10-06, so it is now permanently at -03. (Thanks to Heitor David Pinto and 13 | Even Scharning.) This affects timestamps starting 2025-03-22, as well as the 14 | obsolescent tm_isdst flags starting 2024-10-15. 15 | 16 | ## Changes to past timestamps 17 | 18 | Correct timestamps for the Philippines before 1900, and from 1937 through 1990. 19 | (Thanks to P Chan for the heads-up and citations.) This includes adjusting local 20 | mean time before 1899; fixing transitions in September 1899, January 1937, and 21 | June 1954; adding transitions in December 1941, November 1945, March and 22 | September 1977, and May and July 1990; and removing incorrect transitions in 23 | March and September 1978. 24 | 25 | ## Changes to data 26 | 27 | Add zone1970.tab lines for the Concordia and Eyre Bird Observatory research 28 | stations. (Thanks to Derick Rethans and Jule Dabars.) 29 | 30 | ## Changes to documentation 31 | 32 | The name Etc/Unknown is now reserved: it will not be used by TZDB. This is for 33 | compatibility with CLDR, which uses the string "Etc/Unknown" for an unknown or 34 | invalid timezone. (Thanks to Justin Grant, Mark Davis, and Guy Harris.) 35 | 36 | Cite Internet RFC 9636, which obsoletes RFC 8536 for TZif format. -------------------------------------------------------------------------------- /news.d/2020a.md: -------------------------------------------------------------------------------- 1 | # Version 2020.1 2 | Upstream version 2020a released 2020-04-23T23:03:47+00:00 3 | 4 | ## Briefly: 5 | 6 | Morocco springs forward on 2020-05-31, not 2020-05-24. Canada's Yukon advanced 7 | to -07 year-round on 2020-03-08. America/Nuuk renamed from America/Godthab. zic 8 | now supports expiration dates for leap second lists. 9 | 10 | ## Changes to future timestamps 11 | 12 | Morocco's second spring-forward transition in 2020 will be May 31, not May 24 as 13 | predicted earlier. (Thanks to Semlali Naoufal.) Adjust future-year predictions 14 | to use the first Sunday after the day after Ramadan, not the first Sunday after 15 | Ramadan. 16 | 17 | Canada's Yukon, represented by America/Whitehorse and America/Dawson, advanced 18 | to -07 year-round, beginning with its spring-forward transition on 2020-03-08, 19 | and will not fall back on 2020-11-01. Although a government press release calls 20 | this "permanent Pacific Daylight Saving Time", we prefer MST for consistency 21 | with nearby Dawson Creek, Creston, and Fort Nelson. (Thanks to Tim Parenti.) 22 | 23 | ## Changes to past timestamps 24 | 25 | Shanghai observed DST in 1919. (Thanks to Phake Nick.) 26 | 27 | ## Changes to timezone identifiers 28 | 29 | To reflect current usage in English better, America/Godthab has been renamed to 30 | America/Nuuk. A backwards-compatibility link remains for the old name. 31 | 32 | ## Changes to commentary 33 | 34 | The Îles-de-la-Madeleine and the Listuguj reserve are noted as following 35 | America/Halifax, and comments about Yukon's "south" and "north" have been 36 | corrected to say "east" and "west". (Thanks to Jeffery Nichols.) 37 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- 1 | # Configuration file for the Sphinx documentation builder. 2 | # 3 | # This file only contains a selection of the most common options. For a full 4 | # list see the documentation: 5 | # https://www.sphinx-doc.org/en/master/usage/configuration.html 6 | 7 | import tzdata 8 | 9 | # -- Project information ----------------------------------------------------- 10 | 11 | project = "tzdata" 12 | copyright = "2020, Python Software Foundation" 13 | author = "Python Software Foundation" 14 | version = tzdata.__version__ 15 | 16 | 17 | # -- General configuration --------------------------------------------------- 18 | 19 | # Add any Sphinx extension module names here, as strings. They can be 20 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom 21 | # ones. 22 | extensions = ["sphinx.ext.intersphinx"] 23 | 24 | # Add any paths that contain templates here, relative to this directory. 25 | templates_path = ["_templates"] 26 | 27 | # List of patterns, relative to source directory, that match files and 28 | # directories to ignore when looking for source files. 29 | # This pattern also affects html_static_path and html_extra_path. 30 | exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] 31 | 32 | 33 | # -- Options for HTML output ------------------------------------------------- 34 | 35 | # The theme to use for HTML and HTML Help pages. See the documentation for 36 | # a list of builtin themes. 37 | # 38 | html_theme = "furo" 39 | 40 | # For cross-links to other documentation 41 | intersphinx_mapping = { 42 | "python": ("https://docs.python.org/3", None), 43 | "dateutil": ("https://dateutil.readthedocs.io/en/stable/", None), 44 | } 45 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- 1 | # This workflow is triggered two ways: 2 | # 3 | # 1. When a tag is created, the workflow will upload the package to 4 | # test.pypi.org. 5 | # 2. When a release is made, the workflow will upload the package to pypi.org. 6 | # 7 | # It is done this way until PyPI has draft reviews, to allow for a two-stage 8 | # upload with a chance for manual intervention before the final publication. 9 | name: Upload package 10 | 11 | on: 12 | release: 13 | types: [created] 14 | push: 15 | tags: 16 | - '*' 17 | 18 | jobs: 19 | deploy: 20 | runs-on: ubuntu-latest 21 | environment: 22 | name: release 23 | url: https://pypi.org/p/tzdata 24 | permissions: 25 | id-token: write 26 | steps: 27 | - uses: actions/checkout@v6 28 | - name: Set up Python 29 | uses: actions/setup-python@v6 30 | with: 31 | python-version: '3.x' 32 | - name: Install dependencies 33 | run: | 34 | python -m pip install --upgrade pip 35 | pip install -U tox 36 | - name: Create tox environments 37 | run: | 38 | tox -p -e py,build --notest 39 | - name: Run tests 40 | run: | 41 | tox -e py 42 | - name: Build package 43 | run: | 44 | tox -e build 45 | - name: Publish package (TestPyPI) 46 | if: github.event_name == 'push' 47 | uses: pypa/gh-action-pypi-publish@release/v1 48 | with: 49 | repository-url: https://test.pypi.org/legacy/ 50 | verbose: true 51 | - name: Publish package 52 | if: github.event_name == 'release' 53 | uses: pypa/gh-action-pypi-publish@release/v1 54 | with: 55 | verbose: true 56 | -------------------------------------------------------------------------------- /news.d/2020e.md: -------------------------------------------------------------------------------- 1 | # Version 2020.5 2 | Upstream version 2020e released 2020-12-22T23:14:34+00:00 3 | 4 | ## Briefly: 5 | 6 | Volgograd switches to Moscow time on 2020-12-27 at 02:00. 7 | 8 | ## Changes to future timestamps 9 | 10 | Volgograd changes time zone from +04 to +03 on 2020-12-27 at 02:00. (Thanks to 11 | Alexander Krivenyshev and Stepan Golosunov.) 12 | 13 | ## Changes to past timestamps 14 | 15 | Correct many pre-1986 transitions, fixing entries originally derived from 16 | Shanks. The fixes include: 17 | 18 | - Australia: several 1917 through 1971 transitions 19 | - Bahamas: several 1941 through 1945 transitions 20 | - Bermuda: several 1917 through 1956 transitions 21 | - Belize: several 1942 through 1968 transitions 22 | - Ghana: several 1915 through 1956 transitions 23 | - Israel and Palestine: several 1940 through 1985 transitions 24 | - Kenya and adjacent: several 1908 through 1960 transitions 25 | - Nigeria and adjacent: correcting LMT in Lagos, and several 1905 through 1919 transitions 26 | - Seychelles: the introduction of standard time in 1907, not 1906 27 | - Vanuatu: DST in 1973-1974, and a corrected 1984 transition 28 | 29 | (Thanks to P Chan.) 30 | 31 | Because of the Australia change, Australia/Currie (King Island) is no longer 32 | needed, as it is identical to Australia/Hobart for all timestamps since 1970 and 33 | was therefore created by mistake. Australia/Currie has been moved to the 34 | 'backward' file and its corrected data moved to the 'backzone' file. 35 | 36 | ## Changes to past time zone abbreviations and DST flags 37 | 38 | To better match legislation in Turks and Caicos, the 2015 shift to year-round 39 | observance of -04 is now modeled as AST throughout before returning to Eastern 40 | Time with US DST in 2018, rather than as maintaining EDT until 2015-11-01. 41 | (Thanks to P Chan.) 42 | 43 | ## Changes to documentation 44 | 45 | The zic man page now documents zic's coalescing of transitions when a zone falls 46 | back just before DST springs forward. 47 | -------------------------------------------------------------------------------- /news.d/2023d.md: -------------------------------------------------------------------------------- 1 | # Version 2023.4 2 | Upstream version 2023d released 2023-12-22T04:02:24+00:00 3 | 4 | ## Briefly: 5 | 6 | Ittoqqortoormiit, Greenland changes time zones on 2024-03-31. Vostok, Antarctica 7 | changed time zones on 2023-12-18. Casey, Antarctica changed time zones five 8 | times since 2020. Code and data fixes for Palestine timestamps starting in 2072. 9 | A new data file zonenow.tab for timestamps starting now. 10 | 11 | ## Changes to future timestamps 12 | 13 | Ittoqqortoormiit, Greenland (America/Scoresbysund) joins most of the rest of 14 | Greenland's timekeeping practice on 2024-03-31, by changing its time zone from 15 | -01/+00 to -02/-01 at the same moment as the spring-forward transition. Its 16 | clocks will therefore not spring forward as previously scheduled. The time zone 17 | change reverts to its common practice before 1981. 18 | 19 | Fix predictions for DST transitions in Palestine in 2072-2075, correcting a typo 20 | introduced in 2023a. 21 | 22 | ## Changes to past and future timestamps 23 | 24 | Vostok, Antarctica changed to +05 on 2023-12-18. It had been at +07 (not +06) 25 | for years. (Thanks to Zakhary V. Akulov.) 26 | 27 | Change data for Casey, Antarctica to agree with timeanddate.com, by adding five 28 | time zone changes since 2020. Casey is now at +08 instead of +11. 29 | 30 | ## Changes to past tm_isdst flags 31 | 32 | Much of Greenland, represented by America/Nuuk, changed its standard time from 33 | -03 to -02 on 2023-03-25, not on 2023-10-28. This does not affect UTC offsets, 34 | only the tm_isdst flag. (Thanks to Thomas M. Steenholdt.) 35 | 36 | ## New data file 37 | 38 | A new data file zonenow.tab helps configure applications that use timestamps 39 | dated from now on. This simplifies configuration, since users choose from a 40 | smaller Zone set. The file's format is experimental and subject to change. 41 | 42 | ## Changes to commentary 43 | 44 | Limitations and hazards of the optional support for obsolescent C89 platforms 45 | are documented better, along with a tentative schedule for removing this 46 | support. -------------------------------------------------------------------------------- /news.d/2022f.md: -------------------------------------------------------------------------------- 1 | # Version 2022.6 2 | Upstream version 2022f released 2022-10-29T01:04:57+00:00 3 | 4 | ## Briefly: 5 | 6 | Mexico will no longer observe DST except near the US border. Chihuahua moves to 7 | year-round -06 on 2022-10-30. Fiji no longer observes DST. Move links to 8 | 'backward'. In vanguard form, GMT is now a Zone and Etc/GMT a link. zic now 9 | supports links to links, and vanguard form uses this. Simplify four Ontario 10 | zones. Fix a Y2438 bug when reading TZif data. Enable 64-bit time_t on 32-bit 11 | glibc platforms. Omit large-file support when no longer needed. In C code, use 12 | some C23 features if available. Remove no-longer-needed workaround for Qt bug 13 | 53071. 14 | 15 | ## Changes to future timestamps. 16 | 17 | Mexico will no longer observe DST after 2022, except for areas near the US 18 | border that continue to observe US DST rules. On 2022-10-30 at 02:00 the Mexican 19 | state of Chihuahua moves from -07 (-06 with DST) to year-round -06, thus not 20 | changing its clocks that day. The new law states that Chihuahua near the US 21 | border no longer observes US DST. 22 | 23 | Fiji will not observe DST in 2022/3. (Thanks to Shalvin Narayan.) For now, 24 | assume DST is suspended indefinitely. 25 | 26 | ## Changes to data 27 | 28 | Move links to 'backward' to ease and simplify link maintenance. This affects 29 | generated data only if you use 'make BACKWARD='. 30 | 31 | GMT is now a Zone and Etc/GMT a link instead of vice versa, as GMT is needed for 32 | leap second support whereas Etc/GMT is not. However, this change exposes a bug 33 | in TZUpdater 2.3.2 so it is present only in vanguard form for now. 34 | 35 | Vanguard form now uses links to links, as zic now supports this. 36 | 37 | ## Changes to past timestamps 38 | 39 | Simplify four Ontario zones, as most of the post-1970 differences seem to have 40 | been imaginary. (Problem reported by Chris Walton.) Move America/Nipigon, 41 | America/Rainy_River, and America/Thunder_Bay to 'backzone'; backward- 42 | compatibility links still work, albeit with some different timestamps before 43 | November 2005. -------------------------------------------------------------------------------- /news.d/2022g.md: -------------------------------------------------------------------------------- 1 | # Version 2022.7 2 | Upstream version 2022g released 2022-11-29T16:58:31+00:00 3 | 4 | ## Briefly: 5 | 6 | The northern edge of Chihuahua changes to US timekeeping. Much of Greenland 7 | stops changing clocks after March 2023. Fix some pre-1996 timestamps in northern 8 | Canada. C89 is now deprecated; please use C99 or later. Portability fixes for 9 | AIX, libintl, MS-Windows, musl, z/OS In C code, use more C23 features if 10 | available. C23 timegm now supported by default Fixes for unlikely integer 11 | overflows 12 | 13 | ## Changes to future timestamps 14 | 15 | In the Mexican state of Chihuahua, the border strip near the US will change to 16 | agree with nearby US locations on 2022-11-30. The strip's western part, 17 | represented by Ciudad Juárez, switches from -06 all year to -07/-06 with US DST 18 | rules, like El Paso, TX. The eastern part, represented by Ojinaga, will observe 19 | US DST next year, like Presidio, TX. (Thanks to Heitor David Pinto.) A new Zone 20 | America/Ciudad_Juarez splits from America/Ojinaga. 21 | 22 | Much of Greenland, represented by America/Nuuk, stops observing winter time 23 | after March 2023, so its daylight saving time becomes standard time. (Thanks to 24 | Jonas Nyrup and Jürgen Appel.) 25 | 26 | ## Changes to past timestamps 27 | 28 | Changes for pre-1996 northern Canada (thanks to Chris Walton): 29 | 30 | Merge America/Iqaluit and America/Pangnirtung into the former, with a backward 31 | compatibility link for the latter name. There is no good evidence the two 32 | locations differ since 1970. This change affects pre-1996 America/Pangnirtung 33 | timestamps. 34 | 35 | Cambridge Bay, Inuvik, Iqaluit, Rankin Inlet, Resolute and Yellowknife did not 36 | observe DST in 1965, and did observe DST from 1972 through 1979. 37 | 38 | Whitehorse moved from -09 to -08 on 1966-02-27, not 1967-05-28. 39 | 40 | Colombia's 1993 fallback was 02-06 24:00, not 04-04 00:00. (Thanks to Alois 41 | Treindl.) 42 | 43 | Singapore's 1981-12-31 change was at 16:00 UTC (23:30 local time), not 24:00 44 | local time. (Thanks to Geoff Clare via Robert Elz.) -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- 1 | name: tzdata contents 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | pull_request: 8 | workflow_dispatch: 9 | 10 | jobs: 11 | tests: 12 | 13 | runs-on: ${{ matrix.os }} 14 | strategy: 15 | fail-fast: false 16 | matrix: 17 | python-version: ["2.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"] 18 | os: ["ubuntu-latest", "windows-latest", "macos-latest"] 19 | exclude: 20 | - python-version: "2.7" 21 | include: 22 | - python-version: "2.7" 23 | os: "ubuntu-latest" 24 | use-container: true 25 | env: 26 | TOXENV: py 27 | container: 28 | image: ${{ matrix.use-container && format('python:{0}', matrix.python-version) || '' }} 29 | steps: 30 | - uses: actions/checkout@v6 31 | - if: ${{ !matrix.use-container }} 32 | name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }} (non-containers) 33 | uses: actions/setup-python@v6 34 | with: 35 | python-version: ${{ matrix.python-version }} 36 | allow-prereleases: true 37 | - name: Install dependencies 38 | run: | 39 | python -m pip install --upgrade pip 40 | python -m pip install --upgrade tox 41 | - name: Run tests 42 | run: | 43 | tox 44 | 45 | other: 46 | runs-on: "ubuntu-latest" 47 | strategy: 48 | matrix: 49 | toxenv: ["build", "precommit", "typing", "docs"] 50 | env: 51 | TOXENV: ${{ matrix.toxenv }} 52 | 53 | steps: 54 | - uses: actions/checkout@v6 55 | - name: ${{ matrix.toxenv }} 56 | uses: actions/setup-python@v6 57 | with: 58 | python-version: "3.x" 59 | - name: Install tox 60 | run: | 61 | python -m pip install --upgrade pip 62 | python -m pip install --upgrade tox 63 | - name: Run action 64 | run: | 65 | if [[ $TOXENV == "docs" ]]; then 66 | tox -- -j auto -bhtml -W -n -a --keep-going 67 | else 68 | tox 69 | fi 70 | -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- 1 | [tox] 2 | minversion = 3.3.0 3 | isolated_build = True 4 | skip_missing_interpreters = true 5 | 6 | [testenv] 7 | description = Test that the tzdata contents are accessible 8 | deps = 9 | pytest >= 9; python_version >= '3.10' 10 | pytest; python_version < '3.10' 11 | pytest-subtests; python_version >= '3.6' and python_version <= '3.9' 12 | importlib_resources; python_version<'3.7' 13 | commands = 14 | pytest {toxinidir} {posargs} 15 | 16 | [testenv:precommit] 17 | description = Run the pre-commit hooks on all files 18 | deps = 19 | pre-commit 20 | commands = 21 | pre-commit install -f --install-hooks 22 | pre-commit run --all-files 23 | 24 | [testenv:update] 25 | description = Update the tzdata contents 26 | skip_install = True 27 | deps = 28 | requests 29 | click 30 | parver 31 | python-gnupg 32 | commands = 33 | python update.py {posargs} 34 | 35 | [testenv:bump] 36 | description = Bump the current package version 37 | skip_install = True 38 | deps = 39 | parver 40 | commands = 41 | python bump_version.py {posargs} 42 | 43 | [testenv:typing] 44 | description = Run typechecking 45 | skip_install = True 46 | deps = 47 | mypy 48 | parver 49 | types-requests 50 | types-click 51 | commands = 52 | mypy {posargs} update.py 53 | mypy {posargs} bump_version.py 54 | 55 | [testenv:format] 56 | description = Run auto formatters 57 | skip_install = True 58 | deps = 59 | black 60 | isort >= 5.0.0 61 | commands = 62 | black . 63 | isort update.py 64 | isort --atomic -rc tests 65 | 66 | [testenv:docs] 67 | description = Build the documentation 68 | deps = 69 | -rdocs/requirements.txt 70 | commands = 71 | sphinx-build -d "{toxworkdir}/docs_doctree" "{toxinidir}/docs" \ 72 | "{toxinidir}/docs/_output" {posargs: -j auto --color -bhtml} 73 | 74 | [testenv:build] 75 | description = Build a wheel and source distribution 76 | skip_install = True 77 | deps = 78 | build 79 | twine 80 | commands = 81 | python -c "from pathlib import Path; \ 82 | [x.unlink(missing_ok=True) for x in Path('{toxinidir}/dist').glob('*')]" 83 | python -m build -o {toxinidir}/dist {toxinidir} 84 | twine check {toxinidir}/dist/* 85 | -------------------------------------------------------------------------------- /news.d/2020b.md: -------------------------------------------------------------------------------- 1 | # Version 2020.2 2 | Upstream version 2020b released 2020-10-07T01:35:04+00:00 3 | 4 | ## Briefly: 5 | 6 | Revised predictions for Morocco's changes starting in 2023. Canada's Yukon 7 | changes to -07 on 2020-11-01, not 2020-03-08. Macquarie Island has stayed in 8 | sync with Tasmania since 2011. Casey, Antarctica is at +08 in winter and +11 in 9 | summer. zic no longer supports -y, nor the TYPE field of Rules. 10 | 11 | ## Changes to future timestamps 12 | 13 | Morocco's spring-forward after Ramadan is now predicted to occur no sooner than 14 | two days after Ramadan, instead of one day. (Thanks to Milamber.) The first 15 | altered prediction is for 2023, now predicted to spring-forward on April 30 16 | instead of April 23. 17 | 18 | ## Changes to past and future timestamps 19 | 20 | Casey Station, Antarctica has been using +08 in winter and +11 in summer since 21 | 2018. The most recent transition from +08 to +11 was 2020-10-04 00:01. Also, 22 | Macquarie Island has been staying in sync with Tasmania since 2011. (Thanks to 23 | Steffen Thorsen.) 24 | 25 | ## Changes to past and future time zone abbreviations and DST flags 26 | 27 | Canada's Yukon, represented by America/Whitehorse and America/Dawson, changes 28 | its time zone rules from -08/-07 to permanent -07 on 2020-11-01, not on 29 | 2020-03-08 as 2020a had it. This change affects only the time zone abbreviation 30 | (MST vs PDT) and daylight saving flag for the period between the two dates. 31 | (Thanks to Andrew G. Smith.) 32 | 33 | ## Changes to past timestamps 34 | 35 | Correct several transitions for Hungary for 1918/1983. For example, the 36 | 1983-09-25 fall-back was at 01:00, not 03:00. (Thanks to Géza Nyáry.) Also, the 37 | 1890 transition to standard time was on 11-01, not 10-01 (thanks to Michael 38 | Deckers). 39 | 40 | The 1891 French transition was on March 16, not March 15. The 1911-03-11 French 41 | transition was at midnight, not a minute later. Monaco's transitions were on 42 | 1892-06-01 and 1911-03-29, not 1891-03-15 and 1911-03-11. (Thanks to Michael 43 | Deckers.) 44 | 45 | ## Changes to documentation and commentary 46 | 47 | The long-obsolete files pacificnew, systemv, and yearistype.sh have been removed 48 | from the distribution. (Thanks to Tim Parenti.) 49 | -------------------------------------------------------------------------------- /news.d/2023a.md: -------------------------------------------------------------------------------- 1 | # Version 2023.1 2 | Upstream version 2023a released 2023-03-22T19:39:33+00:00 3 | 4 | ## Briefly: 5 | 6 | Egypt now uses DST again, from April through October. This year Morocco springs 7 | forward April 23, not April 30. Palestine delays the start of DST this year. 8 | Much of Greenland still uses DST from 2024 on. America/Yellowknife now links to 9 | America/Edmonton. tzselect can now use current time to help infer timezone. The 10 | code now defaults to C99 or later. Fix use of C23 attributes. 11 | 12 | ## Changes to future timestamps 13 | 14 | Starting in 2023, Egypt will observe DST from April's last Friday through 15 | October's last Thursday. (Thanks to Ahmad ElDardiry.) Assume the transition 16 | times are 00:00 and 24:00, respectively. 17 | 18 | In 2023 Morocco's spring-forward transition after Ramadan will occur April 23, 19 | not April 30. (Thanks to Milamber.) Adjust predictions for future years 20 | accordingly. This affects predictions for 2023, 2031, 2038, and later years. 21 | 22 | This year Palestine will delay its spring forward from March 25 to April 29 due 23 | to Ramadan. (Thanks to Heba Hamad.) Make guesses for future Ramadans too. 24 | 25 | Much of Greenland, represented by America/Nuuk, will continue to observe DST 26 | using European Union rules. When combined with Greenland's decision not to 27 | change the clocks in fall 2023, America/Nuuk therefore changes from -03/-02 to 28 | -02/-01 effective 2023-10-29 at 01:00 UTC. (Thanks to Thomas M. Steenholdt.) 29 | This change from 2022g doesn't affect timestamps until 2024-03-30, and doesn't 30 | affect tm_isdst until 2023-03-25. 31 | 32 | ## Changes to past timestamps 33 | 34 | America/Yellowknife has changed from a Zone to a backward compatibility Link, as 35 | it no longer differs from America/Edmonton since 1970. (Thanks to Almaz 36 | Mingaleev.) This affects some pre-1948 timestamps. The old data are now in 37 | 'backzone'. 38 | 39 | ## Changes to past time zone abbreviations 40 | 41 | When observing Moscow time, Europe/Kirov and Europe/Volgograd now use the 42 | abbreviations MSK/MSD instead of numeric abbreviations, for consistency with 43 | other timezones observing Moscow time. 44 | 45 | ## Changes to commentary 46 | 47 | tz-link.html has a new section "Coordinating with governments and distributors". 48 | (Thanks to Neil Fuller for some of the text.) 49 | 50 | To improve tzselect diagnostics, zone1970.tab's comments column is now limited 51 | to countries that have multiple timezones. 52 | 53 | Note that leap seconds are planned to be discontinued by 2035. -------------------------------------------------------------------------------- /tests/test_contents.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | import pytest 4 | 5 | try: 6 | from importlib import resources 7 | except ImportError: 8 | import importlib_resources as resources 9 | 10 | 11 | if sys.version_info < (3, 6): 12 | # pytest-subtests does not support Python < 3.6, but having the tests 13 | # separated into clean subtests is nice but not required, so we will create 14 | # a stub that does nothing but at least doesn't fail for lack of a fixture. 15 | import contextlib 16 | 17 | class _SubTestStub: 18 | @contextlib.contextmanager 19 | def test(self, **kwargs): 20 | yield 21 | 22 | _sub_test_stub = _SubTestStub() 23 | 24 | @pytest.fixture 25 | def subtests(): 26 | yield _sub_test_stub 27 | 28 | 29 | def get_magic(zone_name): 30 | components = zone_name.split("/") 31 | package_name = ".".join(["tzdata.zoneinfo"] + components[:-1]) 32 | resource_name = components[-1] 33 | 34 | with resources.open_binary(package_name, resource_name) as f: 35 | return f.read(4) 36 | 37 | 38 | @pytest.mark.parametrize( 39 | "zone_name", 40 | [ 41 | "Africa/Cairo", 42 | "Africa/Casablanca", 43 | "Africa/Lome", 44 | "America/Argentina/San_Luis", 45 | "America/Denver", 46 | "America/Los_Angeles", 47 | "America/New_York", 48 | "America/Thunder_Bay", 49 | "Antarctica/South_Pole", 50 | "Asia/Calcutta", 51 | "Asia/Damascus", 52 | "Asia/Seoul", 53 | "Atlantic/Reykjavik", 54 | "Australia/Perth", 55 | "Egypt", 56 | "Etc/GMT-9", 57 | "Europe/Dublin", 58 | "Europe/London", 59 | "Europe/Prague", 60 | "Hongkong", 61 | "Indian/Cocos", 62 | "Indian/Mayotte", 63 | "Mexico/BajaNorte", 64 | "Pacific/Guam", 65 | "Pacific/Kiritimati", 66 | "US/Eastern", 67 | "UTC", 68 | ], 69 | ) 70 | def test_zone_valid(zone_name): 71 | """Test an assortment of hard-coded zone names. 72 | 73 | This test checks that the zone resource can be loaded and that it starts 74 | with the 4-byte magic indicating a TZif file. 75 | """ 76 | magic = get_magic(zone_name) 77 | assert magic == b"TZif" 78 | 79 | 80 | def test_no_posixrules(): 81 | assert not resources.is_resource("tzdata.zoneinfo", "posixrules") 82 | 83 | 84 | def test_load_zones(subtests): 85 | with resources.open_text("tzdata", "zones") as f: 86 | zones = [z.strip() for z in f] 87 | 88 | for zone in zones: 89 | with subtests.test(zone=zone): 90 | magic = get_magic(zone) 91 | assert magic == b"TZif" 92 | -------------------------------------------------------------------------------- /news.d/2022b.md: -------------------------------------------------------------------------------- 1 | # Version 2022.2 2 | Upstream version 2022b released 2022-08-10T22:38:32+00:00 3 | 4 | ## Briefly: 5 | 6 | Chile's DST is delayed by a week in September 2022. Iran no longer observes DST 7 | after 2022. Rename Europe/Kiev to Europe/Kyiv. New zic -R option Vanguard form 8 | now uses %z. Finish moving duplicate-since-1970 zones to 'backzone'. New build 9 | option PACKRATLIST New tailored_tarballs target, replacing rearguard_tarballs 10 | 11 | ## Changes to future timestamps 12 | 13 | Chile's 2022 DST start is delayed from September 4 to September 11. (Thanks to 14 | Juan Correa.) 15 | 16 | Iran plans to stop observing DST permanently, after it falls back on 2022-09-21. 17 | (Thanks to Ali Mirjamali.) 18 | 19 | ## Changes to past timestamps 20 | 21 | Finish moving to 'backzone' the location-based zones whose timestamps since 1970 22 | are duplicates; adjust links accordingly. This change ordinarily affects only 23 | pre-1970 timestamps, and with the new PACKRATLIST option it does not affect any 24 | timestamps. In this round the affected zones are Antarctica/Vostok, Asia/Brunei, 25 | Asia/Kuala_Lumpur, Atlantic/Reykjavik, Europe/Amsterdam, Europe/Copenhagen, 26 | Europe/Luxembourg, Europe/Monaco, Europe/Oslo, Europe/Stockholm, 27 | Indian/Christmas, Indian/Cocos, Indian/Kerguelen, Indian/Mahe, Indian/Reunion, 28 | Pacific/Chuuk, Pacific/Funafuti, Pacific/Majuro, Pacific/Pohnpei, Pacific/Wake 29 | and Pacific/Wallis, and the affected links are Arctic/Longyearbyen, 30 | Atlantic/Jan_Mayen, Iceland, Pacific/Ponape, Pacific/Truk, and Pacific/Yap. 31 | 32 | From fall 1994 through fall 1995, Shanks wrote that Crimea's DST transitions 33 | were at 02:00 standard time, not at 00:00. (Thanks to Michael Deckers.) 34 | 35 | Iran adopted standard time in 1935, not 1946. In 1977 it observed DST from 36 | 03-21 23:00 to 10-20 24:00; its 1978 transitions were on 03-24 and 08-05, not 37 | 03-20 and 10-20; and its spring 1979 transition was on 05-27, not 03-21. (Thanks 38 | to Roozbeh Pournader and Francis Santoni.) 39 | 40 | Chile's observance of -04 from 1946-08-29 through 1947-03-31 was considered DST, 41 | not standard time. Santiago and environs had moved their clocks back to rejoin 42 | the rest of mainland Chile; put this change at the end of 1946-08-28. (Thanks 43 | to Michael Deckers.) 44 | 45 | Some old, small clock transitions have been removed, as people at the time did 46 | not change their clocks. This affects Asia/Hong_Kong in 1904, Asia/Ho_Chi_Minh 47 | in 1906, and Europe/Dublin in 1880. 48 | 49 | ## Changes to zone name 50 | 51 | Rename Europe/Kiev to Europe/Kyiv, as "Kyiv" is more common in English now. 52 | Spelling of other names in Ukraine has not yet demonstrably changed in common 53 | English practice so for now these names retain old spellings, as in other 54 | countries (e.g., Europe/Prague not "Praha", and Europe/Sofia not "Sofiya"). -------------------------------------------------------------------------------- /bump_version.py: -------------------------------------------------------------------------------- 1 | import argparse 2 | import io 3 | import pathlib 4 | 5 | import parver # type: ignore 6 | 7 | REPO_ROOT = pathlib.Path(__file__).parent 8 | VERSION = REPO_ROOT / pathlib.Path("VERSION") 9 | 10 | 11 | def get_current_version() -> parver.Version: 12 | with open(VERSION, "rt") as f: 13 | return parver.Version.parse(f.read().strip()) 14 | 15 | 16 | def write_version(version: parver.Version): 17 | with open(VERSION, "wt") as f: 18 | f.write(str(version)) 19 | 20 | 21 | def update_package_version(version: parver.Version): 22 | new_init = io.StringIO() 23 | version_set = False 24 | init = REPO_ROOT / "src" / "tzdata" / "__init__.py" 25 | with open(init, "rt") as f: 26 | for line in f: 27 | if not version_set and line.startswith("__version__"): 28 | line = f'__version__ = "{version}"\n' 29 | version_set = True 30 | new_init.write(line) 31 | 32 | if not version_set: 33 | raise ValueError("Version not found in __init__.py!") 34 | 35 | new_init.seek(0) 36 | 37 | with open(init, "wt") as f: 38 | f.write(new_init.read()) 39 | 40 | 41 | def bump_version(version: parver.Version, args) -> parver.Version: 42 | if args.release: 43 | return version.base_version() 44 | 45 | if args.dev: 46 | if args.to is not None: 47 | return version.replace(dev=args.to) 48 | else: 49 | return version.bump_dev() 50 | 51 | version = version.replace(dev=None) 52 | 53 | if args.post: 54 | if args.to is not None: 55 | return version.replace(post=args.to) 56 | else: 57 | return version.bump_post() 58 | 59 | if args.rc: 60 | if version.is_postrelease: 61 | version = version.replace(post=None) 62 | 63 | if args.to is not None: 64 | return version.replace(pre_tag="rc", pre=args.to) 65 | else: 66 | return version.bump_pre("rc") 67 | 68 | return version 69 | 70 | 71 | def main(args): 72 | original_version = get_current_version() 73 | bumped_version = bump_version(original_version, args) 74 | 75 | print(f"{original_version} → {bumped_version}") 76 | if not args.dry_run: 77 | write_version(bumped_version) 78 | update_package_version(bumped_version) 79 | 80 | 81 | if __name__ == "__main__": 82 | parser = argparse.ArgumentParser(description="Manipulate the package version") 83 | 84 | group = parser.add_mutually_exclusive_group(required=True) 85 | 86 | group.add_argument("--rc", action="store_true", help="Bump the release candidate") 87 | group.add_argument("--dev", action="store_true", help="Bump the dev version") 88 | group.add_argument( 89 | "--release", 90 | action="store_true", 91 | help="Bump from release candidate / dev to release", 92 | ) 93 | group.add_argument( 94 | "--post", action="store_true", help="Bump the post release version" 95 | ) 96 | parser.add_argument( 97 | "--to", 98 | type=int, 99 | default=None, 100 | help="Set the specified component to a specific number", 101 | ) 102 | parser.add_argument( 103 | "--dry-run", 104 | action="store_true", 105 | help="Preview what the new version will be without writing any files.", 106 | ) 107 | 108 | args = parser.parse_args() 109 | 110 | if args.to is not None and args.release: 111 | raise ValueError("Cannot combine --to and --release") 112 | 113 | main(args) 114 | -------------------------------------------------------------------------------- /news.d/2021bpost.md: -------------------------------------------------------------------------------- 1 | # Version 2021.2.post0 2 | Upstream version 2021b released 2021-09-24T23:23:00+00:00 3 | 4 | ## Briefly: 5 | 6 | Jordan now starts DST on February's last Thursday. Samoa no longer observes DST. 7 | Merge more location-based Zones whose timestamps agree since 1970. Move some 8 | backward-compatibility links to 'backward'. Rename Pacific/Enderbury to 9 | Pacific/Kanton. Correct many pre-1993 transitions in Malawi, Portugal, etc. zic 10 | now creates each output file or link atomically. 11 | 12 | This release is prompted by recent announcements by Jordan and Samoa. It 13 | incorporates many other changes that had accumulated since 2021a. However, it 14 | omits most proposed changes that merged all Zones agreeing since 1970, as 15 | concerns were raised about doing too many of these changes at once. It does 16 | keeps some of these changes in the interest of making tzdb more equitable one 17 | step at a time; see "Merge more location-based Zones" below. 18 | 19 | ## Changes to future timestamps 20 | 21 | Jordan now starts DST on February's last Thursday. (Thanks to Steffen Thorsen.) 22 | 23 | Samoa no longer observes DST. (Thanks to Geoffrey D. Bennett.) 24 | 25 | ## Changes to zone name 26 | 27 | Rename Pacific/Enderbury to Pacific/Kanton. When we added Enderbury in 1993, we 28 | did not know that it is uninhabited and that Kanton (population two dozen) is 29 | the only inhabited location in that timezone. The old name is now a backward- 30 | compatility link. 31 | 32 | ## Changes to past timestamps 33 | 34 | Correct many pre-1993 transitions, fixing entries originally derived from 35 | Shanks, Whitman, and Mundell. The fixes include: 36 | 37 | - Barbados: standard time was introduced in 1911, not 1932; and DST was 38 | observed in 1942-1944 39 | - Cook Islands: In 1899 they switched from east to west of GMT, celebrating 40 | Christmas for two days. They (and Niue) switched to standard time in 1952, 41 | not 1901. 42 | - Guyana: corrected LMT for Georgetown; the introduction of standard time in 43 | 1911, not 1915; and corrections to 1975 and 1992 transitions 44 | - Kanton: uninhabited before 1937-08-31 45 | - Niue: only observed -11:20 from 1952 through 1964, then went to -11 instead 46 | of -11:30 47 | - Portugal: DST was observed in 1950 48 | - Tonga: corrected LMT; the introduction of standard time in 1945, not 1901; 49 | and corrections to the transition from +12:20 to +13 in 1961, not 1941 50 | 51 | Additional fixes to entries in the 'backzone' file include: 52 | 53 | - Enderbury: inhabited only 1860/1885 and 1938-03-06/1942-02-09 54 | - The Gambia: 1933 and 1942 transitions 55 | - Malawi: several 1911 through 1925 transitions 56 | - Sierra Leone: several 1913 through 1941 transitions, and DST was NOT observed 57 | in 1957 through 1962 (Thanks to P Chan, Michael Deckers, Alexander 58 | Krivenyshev and Alois Treindl.) 59 | 60 | Merge more location-based Zones whose timestamps agree since 1970, as pre-1970 61 | timestamps are out of scope. This is part of a process that has been ongoing 62 | since 2013. This does not affect post-1970 timestamps, and timezone historians 63 | who build with 'make PACKRATDATA=backzone' should see no changes to pre-1970 64 | timestamps. When merging, keep the most-populous location's data, and move data 65 | for other locations to 'backzone' with a backward link in 'backward'. For 66 | example, move America/Creston data to 'backzone' with a link in 'backward' from 67 | America/Phoenix because the two timezones' timestamps agree since 1970; this 68 | change affects some pre-1968 timestamps in America/Creston because Creston and 69 | Phoenix disagreed before 1968. The affected Zones are Africa/Accra, 70 | America/Atikokan, America/Blanc-Sablon, America/Creston, America/Curacao, 71 | America/Nassau, America/Port_of_Spain, Antarctica/DumontDUrville, and 72 | Antarctica/Syowa. 73 | 74 | ## Changes to documentation 75 | 76 | tzfile.5 better matches a draft successor to RFC 8536 77 | . 78 | --------------------------------------------------------------------------------