Update timezone-field and add pytz to requirements, add matching migration
Previously, the version of pytz was not fixed. This could lead to problems when the list of timezones of the locally installed version of pytz differed from the list fixed in migration 0027 of AKModel. This commit therefore: * updates django-timezone-field to the newest version * Adds pytz with the current version to requirements.txt * Introduces a migration to reflect the changes in the internal timezone list of pytz (--('America/Godthab', 'GMT-03:00 America/Godthab'), ++('America/Nuuk', 'GMT-03:00 America/Nuuk'), --('Australia/Currie', 'GMT+11:00 Australia/Currie'))
parent
cc370cbf
No related branches found
No related tags found
... | ... | @@ -2,9 +2,10 @@ Django==3.1.5 |
django-bootstrap4==2.3.1 | ||
django-fontawesome-5==1.0.18 | ||
django-split-settings==1.0.1 | ||
django-timezone-field==4.1.1 | ||
django-timezone-field==4.1.2 | ||
djangorestframework==3.12.2 | ||
django-simple-history==2.12.0 | ||
django-registration-redux==2.9 | ||
django-debug-toolbar==3.2 | ||
mysqlclient==2.0.3 # for production deployment | ||
pytz==2021.1 |
Please register or sign in to comment