Hello,
when I add timedisagg on Cloud Function with python version 3.11, the build process returns these error messages:
Step #1 - "build": ERROR: Ignored the following versions that require a different python version: 1.21.2 Requires-Python >=3.7,<3.11; 1.21.3 Requires-Python >=3.7,<3.11; 1.21.4 Requires-Python >=3.7,<3.11; 1.21.5 Requires-Python >=3.7,<3.11; 1.21.6 Requires-Python >=3.7,<3.11; 1.6.2 Requires-Python >=3.7,<3.10; 1.6.3 Requires-Python >=3.7,<3.10; 1.7.0 Requires-Python >=3.7,<3.10; 1.7.1 Requires-Python >=3.7,<3.10; 1.7.2 Requires-Python >=3.7,<3.11; 1.7.3 Requires-Python >=3.7,<3.11; 1.8.0 Requires-Python >=3.8,<3.11; 1.8.0rc1 Requires-Python >=3.8,<3.11; 1.8.0rc2 Requires-Python >=3.8,<3.11; 1.8.0rc3 Requires-Python >=3.8,<3.11; 1.8.0rc4 Requires-Python >=3.8,<3.11; 1.8.1 Requires-Python >=3.8,<3.11
Step #1 - "build": ERROR: Could not find a version that satisfies the requirement tempdisagg (from versions: none)
Step #1 - "build": ERROR: No matching distribution found for tempdisagg
The installation through pip in my local python works OK.
Do you have any tip to fix the build?
These are the requirements I've added to the cloud function:
functions-framework==3.*
pandas
statsmodels
scikit-learn
pmdarima
scipy
numpy
tempdisagg
If I delete tempdisagg the function is deployed correctly.
Thanks
Hello,
when I add timedisagg on Cloud Function with python version 3.11, the build process returns these error messages:
Step #1 - "build": ERROR: Ignored the following versions that require a different python version: 1.21.2 Requires-Python >=3.7,<3.11; 1.21.3 Requires-Python >=3.7,<3.11; 1.21.4 Requires-Python >=3.7,<3.11; 1.21.5 Requires-Python >=3.7,<3.11; 1.21.6 Requires-Python >=3.7,<3.11; 1.6.2 Requires-Python >=3.7,<3.10; 1.6.3 Requires-Python >=3.7,<3.10; 1.7.0 Requires-Python >=3.7,<3.10; 1.7.1 Requires-Python >=3.7,<3.10; 1.7.2 Requires-Python >=3.7,<3.11; 1.7.3 Requires-Python >=3.7,<3.11; 1.8.0 Requires-Python >=3.8,<3.11; 1.8.0rc1 Requires-Python >=3.8,<3.11; 1.8.0rc2 Requires-Python >=3.8,<3.11; 1.8.0rc3 Requires-Python >=3.8,<3.11; 1.8.0rc4 Requires-Python >=3.8,<3.11; 1.8.1 Requires-Python >=3.8,<3.11
Step #1 - "build": ERROR: Could not find a version that satisfies the requirement tempdisagg (from versions: none)
Step #1 - "build": ERROR: No matching distribution found for tempdisagg
The installation through pip in my local python works OK.
Do you have any tip to fix the build?
These are the requirements I've added to the cloud function:
functions-framework==3.*
pandas
statsmodels
scikit-learn
pmdarima
scipy
numpy
tempdisagg
If I delete tempdisagg the function is deployed correctly.
Thanks