Fast forwards version number so that PyPI and PRAW agent agree

praw4
Scott 8 years ago
parent 536d7875a1
commit e1d34b9159

@ -4,7 +4,7 @@ from setuptools import setup
from codecs import open
from os import path
VERSION = "3.0.0"
VERSION = "5.0.0"
DESCRIPTION = " Remove your comment history on Reddit as deleting an account does not do so."
here = path.abspath(path.dirname(__file__))

@ -79,7 +79,7 @@ class Shredder(object):
self.shred()
def _connect(self, praw_ini, username, password):
self._r = praw.Reddit(user_agent="shreddit/4.4")
self._r = praw.Reddit(user_agent="shreddit/5.0")
if praw_ini:
# PRAW won't panic if the file is invalid, so check first
if not os.path.exists(praw_ini):

Loading…
Cancel
Save