diff options
author | Victor Shyba <victor.shyba@gmail.com> | 2015-07-29 16:21:33 -0300 |
---|---|---|
committer | Victor Shyba <victor.shyba@gmail.com> | 2015-07-29 16:21:33 -0300 |
commit | c8fcfb452392af6b54e36a4bd0788f7b412fdc5c (patch) | |
tree | 65ba44a86c3a3e6ce6f239e642a091812b2a0d95 | |
parent | bc096f113f5c70fee90156a6276273f08a53e081 (diff) |
[bug] specify develop branch when using -e
requirements-latest.pip will try to clone and install. Since it is meant
to be latest, I added a small change to specify the branch 'develop'.
-rw-r--r-- | client/pkg/requirements-latest.pip | 2 | ||||
-rw-r--r-- | common/pkg/requirements-latest.pip | 2 | ||||
-rw-r--r-- | server/pkg/requirements-latest.pip | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/client/pkg/requirements-latest.pip b/client/pkg/requirements-latest.pip index 0edfbca0..a629aa57 100644 --- a/client/pkg/requirements-latest.pip +++ b/client/pkg/requirements-latest.pip @@ -3,6 +3,6 @@ --allow-external u1db --allow-unverified u1db --allow-external dirspec --allow-unverified dirspec --e 'git+https://github.com/pixelated-project/leap_pycommon.git#egg=leap.common' +-e 'git+https://github.com/pixelated-project/leap_pycommon.git@develop#egg=leap.common' -e '../common' -e . diff --git a/common/pkg/requirements-latest.pip b/common/pkg/requirements-latest.pip index 929bb542..9de17382 100644 --- a/common/pkg/requirements-latest.pip +++ b/common/pkg/requirements-latest.pip @@ -2,5 +2,5 @@ --allow-external u1db --allow-unverified u1db --allow-external dirspec --allow-unverified dirspec --e 'git+https://github.com/pixelated-project/leap_pycommon.git#egg=leap.common' +-e 'git+https://github.com/pixelated-project/leap_pycommon.git@develop#egg=leap.common' -e . diff --git a/server/pkg/requirements-latest.pip b/server/pkg/requirements-latest.pip index 0edfbca0..a629aa57 100644 --- a/server/pkg/requirements-latest.pip +++ b/server/pkg/requirements-latest.pip @@ -3,6 +3,6 @@ --allow-external u1db --allow-unverified u1db --allow-external dirspec --allow-unverified dirspec --e 'git+https://github.com/pixelated-project/leap_pycommon.git#egg=leap.common' +-e 'git+https://github.com/pixelated-project/leap_pycommon.git@develop#egg=leap.common' -e '../common' -e . |