Skip to content

Commit

Permalink
Freeze libraries in requirements.txt. (639) (#16)
Browse files Browse the repository at this point in the history
* Freeze libraries in requirements.txt. (639)

* Freeze setup.py
  • Loading branch information
rexwangcc authored Apr 12, 2018
1 parent 8ae4b98 commit f1682bf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Please ensure the following when opening a PR:
- [ ] Added or updated tests
- [ ] Updated documentation
- [ ] Applied style guidelines
- [ ] Considered generalizability beyond our own use case
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
requests
six
requests==2.18.4
six==1.11.0
tenacity==4.10.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
license='BSD 3-clause "New" or "Revised" License',
packages=['cromwell_tools'],
install_requires=[
'requests',
'six'
'requests==2.18.4',
'six==1.11.0'
],
scripts=['cromwell_tools/scripts/cromwell-tools'],
include_package_data=True
Expand Down

0 comments on commit f1682bf

Please sign in to comment.