Skip to content

Commit

Permalink
0.7.4 fix for missing cacerts
Browse files Browse the repository at this point in the history
  • Loading branch information
jcgregorio committed Mar 2, 2012
1 parent ca6a0a2 commit e5332f5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions MANIFEST.in
Original file line number Original file line Diff line number Diff line change
@@ -1,3 +1,3 @@
recursive-include python2 *.py recursive-include python2 *.py *.txt
recursive-include python3 *.py recursive-include python3 *.py *.txt
include python2/httplib2/test/*.txt include python2/httplib2/test/*.txt
2 changes: 1 addition & 1 deletion Makefile
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ release:
cp setup.py README MANIFEST.in CHANGELOG $(DST) cp setup.py README MANIFEST.in CHANGELOG $(DST)
cd dist && tar -czv -f httplib2-$(VERSION).tar.gz httplib2-$(VERSION) cd dist && tar -czv -f httplib2-$(VERSION).tar.gz httplib2-$(VERSION)
cd dist && zip httplib2-$(VERSION).zip -r httplib2-$(VERSION) cd dist && zip httplib2-$(VERSION).zip -r httplib2-$(VERSION)
python setup.py register upload cd dist/httplib2-$(VERSION) && python setup.py sdist --formats=gztar,zip upload
wget "http://support.googlecode.com/svn/trunk/scripts/googlecode_upload.py" -O googlecode_upload.py wget "http://support.googlecode.com/svn/trunk/scripts/googlecode_upload.py" -O googlecode_upload.py
python googlecode_upload.py --summary="Version $(shell python setup.py --version)" --project=httplib2 dist/*.tar.gz python googlecode_upload.py --summary="Version $(shell python setup.py --version)" --project=httplib2 dist/*.tar.gz
python googlecode_upload.py --summary="Version $(shell python setup.py --version)" --project=httplib2 dist/*.zip python googlecode_upload.py --summary="Version $(shell python setup.py --version)" --project=httplib2 dist/*.zip
Expand Down
2 changes: 1 addition & 1 deletion python2/httplib2/__init__.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"Sam Ruby", "Sam Ruby",
"Louis Nyffenegger"] "Louis Nyffenegger"]
__license__ = "MIT" __license__ = "MIT"
__version__ = "0.7.3" __version__ = "0.7.4"


import re import re
import sys import sys
Expand Down
2 changes: 1 addition & 1 deletion python3/httplib2/__init__.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"Louis Nyffenegger", "Louis Nyffenegger",
"Mark Pilgrim"] "Mark Pilgrim"]
__license__ = "MIT" __license__ = "MIT"
__version__ = "0.7.3" __version__ = "0.7.4"


import re import re
import sys import sys
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 @@ -5,7 +5,7 @@
import sys import sys


pkgdir = {'': 'python%s' % sys.version_info[0]} pkgdir = {'': 'python%s' % sys.version_info[0]}
VERSION = '0.7.3' VERSION = '0.7.4'


setup(name='httplib2', setup(name='httplib2',
version=VERSION, version=VERSION,
Expand Down

0 comments on commit e5332f5

Please sign in to comment.