-
Notifications
You must be signed in to change notification settings - Fork 1
Adding support for Python CycloneDx #420
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
Conversation
| "type": "library", | ||
| "group": "", | ||
| "name": "amqp", | ||
| "version": "==2.2.2", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe remove == so that we have this?
"version": "2.2.2",What do you think, Josh?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep I can remove == for pinned requirements. It's just for unpinned/semi-pinned requirements, if something like
>=3.2.1
is given for example, getting rid of >= might cause confusion as we wouldn't be able to tell that any newer version (3.2.1+) is also specified?
Adding support for Python in CycloneDx implementation