Place a .htaccess in your wp-admin directory that only allows your IP to access it.
Code:
AuthUserFile /dev/null
AuthGroupFile /dev/null
AuthName "Example Access Control"
AuthType Basic
<LIMIT GET>
order deny,allow
deny from all
allow from your.ip.address.here
</LIMIT>