-
-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing package tzdata
in requirements.txt
#185
Comments
Yeah, it's weird that it's not included by default. Maybe it's an alpine thing? I'm not sure. It definitely works elsewhere (including our docker image). |
Maybe it's because your docker image is based on |
On Arch, this isn't a problem because |
@Xiretza, how should we solve this? Conditional dep in Alpine (is that possible?), or something else? |
Why does it have to be conditional? Is there a problem with it being a dependency on all platforms? |
It's better to not have redundant dependencies. |
In my opinion this shouldn't be etesync's problem at all, this is a problem with Alpine's python installation. If |
When installing required packages via
pip3 install -r requirements.txt
on Alpine, I get this error when trying to access the/admin
page:It was easily fixed by installing the
tzdata
package:pip3 install tzdata
Maybe it should be added to the
requirements.txt
file? Why is it not included although it seems to be auto-generated?The text was updated successfully, but these errors were encountered: