Skip to content

Commit

Permalink
Version 0.3.1 for PyPi.
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthur Grunseid committed Apr 9, 2012
1 parent af3988c commit 7f7e2d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion furl/__init__.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# License: Build Amazing Things (Unlicense) # License: Build Amazing Things (Unlicense)


__title__ = 'furl' __title__ = 'furl'
__version__ = '0.3' # Keep synchronized with setup.py. __version__ = '0.3.1' # Keep synchronized with setup.py.
__author__ = 'Arthur Grunseid' __author__ = 'Arthur Grunseid'
__contact__ = 'grunseid@gmail.com' __contact__ = 'grunseid@gmail.com'
__license__ = 'Unlicense' __license__ = 'Unlicense'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
Information and documentation at https://github.com/gruns/furl.''') Information and documentation at https://github.com/gruns/furl.''')


setup(name='furl', setup(name='furl',
version='0.3', # Keep synchronized with __init__.py. version='0.3.1', # Keep synchronized with __init__.py.
author='Arthur Grunseid', author='Arthur Grunseid',
author_email='grunseid@gmail.com', author_email='grunseid@gmail.com',
url='https://github.com/gruns/furl', url='https://github.com/gruns/furl',
Expand Down
2 changes: 1 addition & 1 deletion tests/test_furl.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -1246,7 +1246,7 @@ def test_remove(self):
assert f is f.remove(path=True, query=True, fragment=True) assert f is f.remove(path=True, query=True, fragment=True)
assert f.url == 'http://host' assert f.url == 'http://host'


def test_join_urljoin(self): def test_join(self):
empty_tests = ['', '/meat', '/meat/pump?a=a&b=b#fragsup', empty_tests = ['', '/meat', '/meat/pump?a=a&b=b#fragsup',
'http://www.pumps.org/brg/pap/mrf?a=b&c=d#frag?sup',] 'http://www.pumps.org/brg/pap/mrf?a=b&c=d#frag?sup',]
run_tests = [ run_tests = [
Expand Down

0 comments on commit 7f7e2d6

Please sign in to comment.