Skip to content

Commit

Permalink
fix: cease ssh-keyscanning no-longer-used IP addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
rjhenry committed Sep 4, 2024
1 parent 066c575 commit c2a1f49
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions deploy/fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@
PROJECT_ROOT = "/usr/local/projects/temmpo/"

GIT_URL = 'git@github.com:MRCIEU/temmpo.git'
GIT_SSH_HOSTS = ('104.192.143.1',
'104.192.143.2',
'104.192.143.3',
'bitbucket.org',
GIT_SSH_HOSTS = ('bitbucket.org',
'github.com',)

# Tools not handled by pip-tools and/or requirements installs using pip
Expand Down Expand Up @@ -649,4 +646,4 @@ def force_reinstall_django_clamd_from_pypi(env="demo", use_local_mode=False, pro
caller, change_dir = _toggle_local_remote(use_local_mode)
venv_dir = project_dir + "lib/" + env + "/"
with change_dir(venv_dir+"src/temmpo/"):
caller('../../bin/pip install --no-deps --force-reinstall django-clamd==1.0.0')
caller('../../bin/pip install --no-deps --force-reinstall django-clamd==1.0.0')

0 comments on commit c2a1f49

Please sign in to comment.