forked from kubeflow/training-operator
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(pipenv): Use pipenv to lock down python dependencies (kubeflow#248)
This is really a trivial change and so far I haven't been able to find time to adjust the docker file accordingly.
- Loading branch information
Showing
5 changed files
with
601 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[[source]] | ||
|
||
url = "https://pypi.python.org/simple" | ||
verify_ssl = true | ||
name = "pypi" | ||
|
||
|
||
[packages] | ||
|
||
"Jinja2" = ">=2.9.5" | ||
requests = ">=2.14.2" | ||
protobuf = ">=3.5.0.post1" | ||
google-api-python-client = ">=1.6.4" | ||
google-cloud = ">=0.30.0" | ||
kubernetes = ">=4.0.0" | ||
mock = ">=2.0.0" | ||
pyyaml = ">=3.12" | ||
"pyasn1" = ">=0.4.2" | ||
|
||
|
||
[dev-packages] | ||
|
Oops, something went wrong.