-
Notifications
You must be signed in to change notification settings - Fork 41
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
unpins dependencies #418
unpins dependencies #418
Conversation
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.
LGTM
938ac50
to
32f4efd
Compare
@@ -50,7 +50,7 @@ pytz = { version = ">=2019.3", optional = true } | |||
requests = { version = ">=2.21.0", optional = true } | |||
requests-oauthlib = { version = ">=1.3.0", optional = true } | |||
six = { version = ">=1.13.0", optional = true } | |||
drf-spectacular = "0.26.3" | |||
drf-spectacular = "^0.26.3" |
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.
Why does the app even need to care about the drf-spectacular version, given that it receives this dependency from nautobot core?
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.
Very good point, same should go for the prometheus_client honestly. I will review
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.
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.
Can be probably reverted, don't remember exact reason other than there was a generic advice to use ^
in dependencies.
Fixes #417