diff --git a/.travis.yml b/.travis.yml
index 209f9697863360e8fd63c833d954abc14c45063a..dcbb87b40e8ce3b80b5dc725043b9f0ab9ce359e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,6 +1,6 @@
 language: python
 python:
-  - 2.7
+  - 2.7.10
 
 sudo: false
 
diff --git a/readme.md b/readme.md
index ec54efcaf5227cf3d33530bfc0c7bb60a5d4f426..e1531177ef1c2a32881acc1563153b00a7b84cdf 100644
--- a/readme.md
+++ b/readme.md
@@ -27,7 +27,7 @@ Automatic Video Library Manager for TV Shows. It watches for new episodes of you
 - [Mobile](http://imgur.com/a/WPyG6)
 
 #### Dependencies
- To run SickRage from source you will need Python 2.7.x and PyOpenSSL
+ To run SickRage from source you will need Python 2.7.10
 
 #### [![Feature Requests](https://cloud.githubusercontent.com/assets/390379/10127973/045b3a96-6560-11e5-9b20-31a2032956b2.png)](http://feathub.com/SiCKRAGETV/SickRage)
 
diff --git a/requirements.txt b/requirements.txt
deleted file mode 100644
index 4c95144c6133068d85e7e7d50074a6266f01a93e..0000000000000000000000000000000000000000
--- a/requirements.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-mako
-pyopenssl==0.13.1
diff --git a/tests/ssl_sni_tests.py b/tests/ssl_sni_tests.py
index f7adf5bd398713007e0ce67386dcc030380ce772..c20fcbfa7804f0f563397676be7fd99804a30b2d 100644
--- a/tests/ssl_sni_tests.py
+++ b/tests/ssl_sni_tests.py
@@ -30,10 +30,11 @@ from sickrage.helper.exceptions import ex
 
 
 class SNI_Tests(unittest.TestCase):
+    self_signed_cert_providers = ["Womble's Index", "Libertalia"]
     def test_SNI_URLS(self):
         print ''
         #Just checking all providers - we should make this error on non-existent urls.
-        for provider in providers.makeProviderList():
+        for provider in [provider for provider in providers.makeProviderList() if provider.name not in self.self_signed_cert_providers]:
             print 'Checking %s' % provider.name
             try:
                 requests.head(provider.url, verify=certifi.where(), timeout=5)
@@ -45,7 +46,6 @@ class SNI_Tests(unittest.TestCase):
                     raise
                 else:
                     print  'Cannot verify certificate for %s' % provider.name
-                    pass
             except Exception:
                 pass