aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Yu <alexyu@alexyu-macpro.roam.corp.google.com>2018-07-25 19:49:41 -0400
committerAlex Yu <stinky2nine@users.noreply.github.com>2018-07-26 09:13:10 -0400
commit89b79a507ae4a00e25bafc1359b9dd5f8559f4f8 (patch)
treefc526a1b0eb4fb6e227aceb52b2c71c3945de908
parent56b1fa36be8c3f251602b6be8486c7b891085cce (diff)
downloadplatform_external_python_httplib2-89b79a507ae4a00e25bafc1359b9dd5f8559f4f8.tar.gz
platform_external_python_httplib2-89b79a507ae4a00e25bafc1359b9dd5f8559f4f8.tar.bz2
platform_external_python_httplib2-89b79a507ae4a00e25bafc1359b9dd5f8559f4f8.zip
Drop support for Python 3.3
Fix #42
-rw-r--r--.travis.yml1
-rw-r--r--Makefile4
-rw-r--r--index.html2
3 files changed, 3 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 259a27f..8e0a165 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,7 +13,6 @@ env:
- pip_install_common='pip>=9.0 setuptools>=36.2 wheel>=0.30'
python:
- 2.7
- - 3.3
- 3.4
- 3.5
- 3.6
diff --git a/Makefile b/Makefile
index ed8c013..96fabaa 100644
--- a/Makefile
+++ b/Makefile
@@ -5,11 +5,11 @@ tests:
-cd python2 && python2.6 httplib2test_appengine.py
cd python2 && python2.7 httplib2test.py
cd python2 && python2.7 httplib2test_appengine.py
- cd python3 && python3.2 httplib2test.py
+ cd python3 && python3 httplib2test.py
VERSION = $(shell python setup.py --version)
INLINE_VERSION = $(shell cd python2; python -c "import httplib2;print httplib2.__version__")
-INLINE_VERSION_3 = $(shell cd python3; ~/bin/python3.2 -c "import httplib2;print(httplib2.__version__)")
+INLINE_VERSION_3 = $(shell cd python3; ~/bin/python3 -c "import httplib2;print(httplib2.__version__)")
DST = dist/httplib2-$(VERSION)
release:
diff --git a/index.html b/index.html
index 5a98539..8b8eeb9 100644
--- a/index.html
+++ b/index.html
@@ -112,7 +112,7 @@ must not be used when handling this request.
<h3>Requirements</h3>
-<p>Requires Python 2.3 or later. Does not require
+<p>Requires Python 2.7, 3.4, or later. Does not require
any libraries beyond what is found in the core library.</p>
<h3>Download/Installation</h3>