From c0b0ba174384b946807af0d12a01c9ec62142a90 Mon Sep 17 00:00:00 2001 From: Joe Gregorio Date: Fri, 2 Mar 2012 12:12:08 -0800 Subject: 0.7.4 fix for missing cacerts --- MANIFEST.in | 6 +++--- Makefile | 2 +- python2/httplib2/__init__.py | 2 +- python3/httplib2/__init__.py | 2 +- setup.py | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index f1510a3..b8bb4a9 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,3 @@ -recursive-include python2 *.py -recursive-include python3 *.py -include python2/httplib2/test/*.txt \ No newline at end of file +recursive-include python2 *.py *.txt +recursive-include python3 *.py *.txt +include python2/httplib2/test/*.txt diff --git a/Makefile b/Makefile index 6f7f121..ba58f84 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ release: cp setup.py README MANIFEST.in CHANGELOG $(DST) cd dist && tar -czv -f httplib2-$(VERSION).tar.gz 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 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 diff --git a/python2/httplib2/__init__.py b/python2/httplib2/__init__.py index ab42577..48a7d4d 100644 --- a/python2/httplib2/__init__.py +++ b/python2/httplib2/__init__.py @@ -22,7 +22,7 @@ __contributors__ = ["Thomas Broyer (t.broyer@ltgt.net)", "Sam Ruby", "Louis Nyffenegger"] __license__ = "MIT" -__version__ = "0.7.3" +__version__ = "0.7.4" import re import sys diff --git a/python3/httplib2/__init__.py b/python3/httplib2/__init__.py index 68dc014..98449d2 100644 --- a/python3/httplib2/__init__.py +++ b/python3/httplib2/__init__.py @@ -24,7 +24,7 @@ __contributors__ = ["Thomas Broyer (t.broyer@ltgt.net)", "Louis Nyffenegger", "Mark Pilgrim"] __license__ = "MIT" -__version__ = "0.7.3" +__version__ = "0.7.4" import re import sys diff --git a/setup.py b/setup.py index c96a2d9..f272f43 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: import sys pkgdir = {'': 'python%s' % sys.version_info[0]} -VERSION = '0.7.3' +VERSION = '0.7.4' setup(name='httplib2', version=VERSION, -- cgit v1.2.3