Everytime a new timezone is added to tzdata in an update, this timezone cannot be used in pytz with the hardcoded list of timezones. For jammy this applies to America/Ciudad_Juarez (when comparing pytz to tzdata 2023c).
Test case for jammy:
``` import pytz pytz.timezone("America/Ciudad_Juarez") ```
This should not raise UnknownTimeZoneError.
Everytime a new timezone is added to tzdata in an update, this timezone cannot be used in pytz with the hardcoded list of timezones. For jammy this applies to America/ Ciudad_ Juarez (when comparing pytz to tzdata 2023c).
Test case for jammy:
``` "America/ Ciudad_ Juarez" )
import pytz
pytz.timezone(
```
This should not raise UnknownTimeZone Error.