42d9b36
diff -ur praw-3.6.0-orig/praw/__init__.py praw-3.6.0/praw/__init__.py
42d9b36
--- praw-3.6.0-orig/praw/__init__.py	2016-11-16 08:38:56.293851445 +0100
42d9b36
+++ praw-3.6.0/praw/__init__.py	2016-11-16 08:41:38.863346993 +0100
42d9b36
@@ -48,7 +48,6 @@
42d9b36
 from six.moves import html_entities, http_cookiejar
42d9b36
 from six.moves.urllib.parse import parse_qs, urlparse, urlunparse
42d9b36
 # pylint: enable=F0401
42d9b36
-from update_checker import update_check
42d9b36
 from warnings import warn_explicit
42d9b36
 
42d9b36
 
42d9b36
@@ -364,7 +363,6 @@
42d9b36
         # Check for updates if permitted and this is the first Reddit instance
42d9b36
         if not disable_update_check and not BaseReddit.update_checked \
42d9b36
                 and self.config.check_for_updates:
42d9b36
-            update_check(__name__, __version__)
42d9b36
             BaseReddit.update_checked = True
42d9b36
 
42d9b36
         # Warn against a potentially incompatible version of pyOpenSSL
42d9b36
diff -ur praw-3.6.0-orig/setup.py praw-3.6.0/setup.py
42d9b36
--- praw-3.6.0-orig/setup.py	2016-11-16 08:38:56.288851430 +0100
42d9b36
+++ praw-3.6.0/setup.py	2016-11-16 08:39:41.862990350 +0100
42d9b36
@@ -16,8 +16,7 @@
42d9b36
 
42d9b36
 dependencies = ['decorator >=4.0.9, <4.1',
42d9b36
                 'requests >=2.3.0',
42d9b36
-                'six ==1.10',
42d9b36
-                'update_checker >=0.12, <1.0']
42d9b36
+                'six ==1.10']
42d9b36
 
42d9b36
 try:
42d9b36
     from OpenSSL import __version__ as opensslversion