diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-02-18 10:59:30 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-02-18 11:00:13 +0000 |
commit | 87e9aeb9143a3dab2dcac24797c822dedde845f1 (patch) | |
tree | b698264da2e620e685792d1f85f53ff12c2c35ff /synapse/python_dependencies.py | |
parent | Add .__name__ after type(e) (diff) | |
download | synapse-87e9aeb9143a3dab2dcac24797c822dedde845f1.tar.xz |
Move pynacl to the top of the depedency link list so that it is
installed before syutil
Diffstat (limited to 'synapse/python_dependencies.py')
-rw-r--r-- | synapse/python_dependencies.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py index ec78fc3627..a30a570552 100644 --- a/synapse/python_dependencies.py +++ b/synapse/python_dependencies.py @@ -25,6 +25,11 @@ def github_link(project, version, egg): DEPENDENCY_LINKS = [ github_link( + project="pyca/pynacl", + version="d4d3175589b892f6ea7c22f466e0e223853516fa", + egg="pynacl-0.3.0", + ) + github_link( project="matrix-org/syutil", version="v0.0.3", egg="syutil-0.0.3", @@ -34,11 +39,6 @@ DEPENDENCY_LINKS = [ version="v0.6.2", egg="matrix_angular_sdk-0.6.2", ), - github_link( - project="pyca/pynacl", - version="d4d3175589b892f6ea7c22f466e0e223853516fa", - egg="pynacl-0.3.0", - ) ] |