Skip to content

Commit

Permalink
0.8.0 let's just put it out there and see
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesturk committed Mar 19, 2013
1 parent f6d6ec2 commit b25e57d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ scrapelib changelog
0.8.0
-----
* requests 1.0 compatibility
* removal of some requests pass-throughs
* removal of requests pass-throughs
* deprecation of setting parameters via constructor

0.7.4
Expand Down
6 changes: 1 addition & 5 deletions scrapelib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@
import requests
from .cache import CachingSession, FileCache

# for backwards-compatibility w/ scrapelib <= 0.6
Headers = requests.structures.CaseInsensitiveDict
ScrapeError = requests.RequestException

if sys.version_info[0] < 3: # pragma: no cover
from urllib2 import urlopen as urllib_urlopen
from urllib2 import URLError as urllib_URLError
Expand All @@ -28,7 +24,7 @@
from urllib import robotparser
_str_type = str

__version__ = '0.8.0-dev'
__version__ = '0.8.0'
_user_agent = ' '.join(('scrapelib', __version__,
requests.utils.default_user_agent()))

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
long_description = open('README.rst').read()

setup(name="scrapelib",
version='0.8.0-dev',
version='0.8.0',
py_modules=['scrapelib'],
author="James Turk",
author_email='jturk@sunlightfoundation.com',
Expand All @@ -23,6 +23,7 @@
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
("Topic :: Software Development :: Libraries :: "
"Python Modules"),
],
Expand Down

0 comments on commit b25e57d

Please sign in to comment.