Skip to content

Commit c0b0ba1

Browse files
committed
0.7.4 fix for missing cacerts
1 parent f0af0ab commit c0b0ba1

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

MANIFEST.in

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
recursive-include python2 *.py
2-
recursive-include python3 *.py
3-
include python2/httplib2/test/*.txt
1+
recursive-include python2 *.py *.txt
2+
recursive-include python3 *.py *.txt
3+
include python2/httplib2/test/*.txt

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ release:
3333
cp setup.py README MANIFEST.in CHANGELOG $(DST)
3434
cd dist && tar -czv -f httplib2-$(VERSION).tar.gz httplib2-$(VERSION)
3535
cd dist && zip httplib2-$(VERSION).zip -r httplib2-$(VERSION)
36-
python setup.py register upload
36+
cd dist/httplib2-$(VERSION) && python setup.py sdist --formats=gztar,zip upload
3737
wget "http://support.googlecode.com/svn/trunk/scripts/googlecode_upload.py" -O googlecode_upload.py
3838
python googlecode_upload.py --summary="Version $(shell python setup.py --version)" --project=httplib2 dist/*.tar.gz
3939
python googlecode_upload.py --summary="Version $(shell python setup.py --version)" --project=httplib2 dist/*.zip

python2/httplib2/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"Sam Ruby",
2323
"Louis Nyffenegger"]
2424
__license__ = "MIT"
25-
__version__ = "0.7.3"
25+
__version__ = "0.7.4"
2626

2727
import re
2828
import sys

python3/httplib2/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"Louis Nyffenegger",
2525
"Mark Pilgrim"]
2626
__license__ = "MIT"
27-
__version__ = "0.7.3"
27+
__version__ = "0.7.4"
2828

2929
import re
3030
import sys

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import sys
66

77
pkgdir = {'': 'python%s' % sys.version_info[0]}
8-
VERSION = '0.7.3'
8+
VERSION = '0.7.4'
99

1010
setup(name='httplib2',
1111
version=VERSION,

0 commit comments

Comments
 (0)