-
Notifications
You must be signed in to change notification settings - Fork 372
Fix issues for packing #186
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
TomNong
commented
Aug 4, 2019
- Toggle off exceeded deprecation warnings.
- Modify limitation on dependencies versions.
- Transform code style to use distribution from tensorflow_probability.
- Polish code.
@@ -30,14 +30,15 @@ | |||
'pyyaml', | |||
'requests', | |||
'funcsigs>=1.0.2', | |||
'packaging' |
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 packaging
is needed? Where is it used?
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.
It is used for detecting the TF
version, since the toggling warning code itself causes deprecation warning in TF==1.14.0
, to support the compatibility I added it to handle TF==1.14.0
case.