This repository was archived by the owner on Sep 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
Fixing version collection #688
Copy link
Copy link
Open
Labels
bugSomething isn't workingSomething isn't workingfeedbackUser's feedbackUser's feedbackrequirementsFinding requirements and dependencies needed to properly serialize objectsFinding requirements and dependencies needed to properly serialize objects
Description
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:
- After installing
regex==2023.6.3,import regex ; regex.__version__gives2.5.129. But there is no2.5.129version ofregexso the install fail - After installing
opencv-python-headless=4.8.0.74,import cv2 ; cv2.__version__gives4.8.0but there is no4.8.0version ofopencv-python-headless(you need to give the 4th-level version).
Reported in discord.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingfeedbackUser's feedbackUser's feedbackrequirementsFinding requirements and dependencies needed to properly serialize objectsFinding requirements and dependencies needed to properly serialize objects