Skip to content

Commit

Permalink
pin things a bit better
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkowl committed Dec 3, 2016
1 parent ecb06a8 commit c2d393f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
6 changes: 3 additions & 3 deletions braid/venv.py
Expand Up @@ -41,7 +41,7 @@ def install(self, package):
"""
with settings(user=self._user):
pip = path.join(self._location, "bin", "pip")
run("{} install -U {}".format(pip, package), pty=False)
run("{} install {}".format(pip, package), pty=False)

def install_twisted(self):
"""
Expand All @@ -51,7 +51,7 @@ def install_twisted(self):
attrs==16.2.0
cffi==1.9.1
constantly==15.1.0
cryptography==1.5.3
cryptography==1.6
enum34==1.1.6
h2==2.5.0
hpack==2.3.0
Expand All @@ -66,7 +66,7 @@ def install_twisted(self):
pyOpenSSL==16.2.0
service-identity==16.0.0
six==1.10.0
Twisted==16.6.0rc1
Twisted==16.6.0
zope.interface==4.3.2
""".split()))

Expand Down
21 changes: 11 additions & 10 deletions services/trac/fabfile.py
Expand Up @@ -52,16 +52,17 @@ def update(self):
mirror_local_mode=True)

self.venv.install_twisted()
self.venv.install('psycopg2==2.6.2')
self.venv.install('trac==1.0.12')
self.venv.install('pygments==1.6')

self.venv.install('git+https://github.com/twisted-infra/twisted-trac-plugins.git')

self.venv.install('spambayes==1.1b2')
self.venv.install('trac-github==2.1.5 requests_oauthlib==0.6.1')
self.venv.install('svn+https://trac-hacks.org/svn/defaultccplugin/tags/0.2/')
self.venv.install('svn+https://svn.edgewall.org/repos/trac/plugins/1.0/spam-filter@14340')
self.venv.install(" ".join("""
psycopg2==2.6.2
pygments==1.6
spambayes==1.1b2
trac==1.0.13
trac-github==2.2
requests_oauthlib==0.6.1
svn+https://trac-hacks.org/svn/defaultccplugin/tags/0.2/
svn+https://svn.edgewall.org/repos/trac/plugins/1.0/spam-filter@14340
git+https://github.com/twisted-infra/twisted-trac-plugins.git
""").split())


def task_update(self):
Expand Down

0 comments on commit c2d393f

Please sign in to comment.