Skip to content

Commit

Permalink
Set minimum dependency versions (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtomlinson committed Nov 20, 2020
1 parent 04fa84a commit 5664336
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
extras_require = {
"aws": ["aiobotocore>=0.10.2"],
"azure": [
"azure-mgmt-compute",
"azure-mgmt-network",
"azure-cli-core",
"azure-mgmt-compute>=18.0.0",
"azure-mgmt-network>=16.0.0",
"azure-cli-core>=2.15.1",
],
"azureml": [
"azureml-sdk>=1.0.83",
],
"digitalocean": ["python-digitalocean"],
"gcp": ["google-api-python-client", "google-auth"],
"digitalocean": ["python-digitalocean>=1.15.0"],
"gcp": ["google-api-python-client>=1.12.5", "google-auth>=1.23.0"],
}
extras_require["all"] = set(pkg for pkgs in extras_require.values() for pkg in pkgs)

Expand Down

0 comments on commit 5664336

Please sign in to comment.