Skip to content
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

Constrain pyyaml to <5.4 #1895

Merged
merged 2 commits into from Jan 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/verta/setup.py
Expand Up @@ -31,7 +31,7 @@
"googleapis-common-protos>=1.5",
"pathlib2>=2.2",
"protobuf>=3.8",
"pyyaml>=5.1",
"pyyaml>=5.1, <5.4",
"requests>=2.21, <3.0",
],
entry_points={
Expand Down
1 change: 0 additions & 1 deletion client/verta/verta/client.py
Expand Up @@ -19,7 +19,6 @@
import zipfile

import requests
import yaml
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Clean up: not being used in client.py

from verta._tracking.organization import Organization
from ._internal_utils._utils import check_unnecessary_params_warning

Expand Down