You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "Prerequisites" section refers to the use of Python 3.8.10, but the project's Dockerfile fixes Python only to v3, leading to
an error during the build process of the Docker image:
...
lib/zoneinfo_module.c: In function ‘zoneinfo_fromutc’:
lib/zoneinfo_module.c:600:19: error: ‘_PyLong_One’ undeclared (first use in this function); did you mean
‘_PyLong_New’?
...
Using the python:3.8.10 base image in the Dockerfile, fixes that problem.
The text was updated successfully, but these errors were encountered:
The "Prerequisites" section refers to the use of Python 3.8.10, but the project's Dockerfile fixes Python only to v3, leading to
an error during the build process of the Docker image:
Using the python:3.8.10 base image in the Dockerfile, fixes that problem.
The text was updated successfully, but these errors were encountered: