diff options
author | 2021-06-19 17:11:55 +0200 | |
---|---|---|
committer | 2021-06-19 17:11:55 +0200 | |
commit | c8fc67e0e748e9b9e46b4ab3fabda617df71cb2e (patch) | |
tree | 3eef0e836f0e5e988bf65cc1147d993efbb9864e | |
parent | Bump urllib3 from 1.26.4 to 1.26.5 (diff) |
Env deps: add tzdata
Snekbox is lacking an IANA timezone database, this first-party `tzdata` package will provide them. It can be tested by running the following script:
```py
import zoneinfo
if len(zoneinfo.available_timezones()) == 0:
print("The environment doesn't have a valid IANA database.")
```
-rw-r--r-- | deployment.yaml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/deployment.yaml b/deployment.yaml index 0b294d2..4eacd5d 100644 --- a/deployment.yaml +++ b/deployment.yaml @@ -49,6 +49,7 @@ spec: scipy~=1.5 sympy~=1.6 toml~=0.10 + tzdata~=2021.1 yarl~=1.6 volumes: - name: snekbox-user-base-volume |