This repository has been archived by the owner on Sep 13, 2023. It is now read-only.
Fixing version collection #688
Labels
bug
Something isn't working
feedback
User's feedback
requirements
Finding requirements and dependencies needed to properly serialize objects
I kept running with issues with the automatic 3rd party dependencies (inferring the wrong version, or missing packages). The version issue is due to some python packages having a mismatch between
MODULE.__version__
and the version required for pip:regex==2023.6.3
,import regex ; regex.__version__
gives2.5.129
. But there is no2.5.129
version ofregex
so the install failopencv-python-headless=4.8.0.74
,import cv2 ; cv2.__version__
gives4.8.0
but there is no4.8.0
version ofopencv-python-headless
(you need to give the 4th-level version).Reported in discord.
The text was updated successfully, but these errors were encountered: