aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Howitz <mh@gocept.com>2018-12-01 08:23:50 +0100
committerSergey Shepelev <temotor@gmail.com>2018-12-01 12:23:49 +0500
commitd26ed028c0eccdfdc94316eaaf07982d8520ee9e (patch)
tree94fd851a53865c3e9f1ea6a7445c968f63f9d11e
parent806de52a2939d95800e43b1ab96be45a33b882d1 (diff)
downloadhttplib2-d26ed028c0eccdfdc94316eaaf07982d8520ee9e.tar.gz
officially support Python 3.7
https://github.com/httplib2/httplib2/issues/123
-rw-r--r--.travis.yml9
-rw-r--r--CHANGELOG4
-rwxr-xr-xsetup.py1
3 files changed, 12 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 8e0a165..57991d5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,5 +1,5 @@
-sudo: false
language: python
+dist: xenial
cache:
apt: true
@@ -16,7 +16,7 @@ python:
- 3.4
- 3.5
- 3.6
- - pypy
+ - 3.7
matrix:
fast_finish: true
install: pip install $pip_install_common 'codecov>=2.0.15' -r requirements-test.txt
@@ -28,6 +28,11 @@ stages:
jobs:
include:
- stage: test
+ python: pypy
+ dist: trusty
+ install: pip install $pip_install_common 'codecov>=2.0.15' -r requirements-test.txt
+ script: script/test -sv && codecov
+ - stage: test
env: _=py2-pep8
python: 2.7
install: pip install -r requirements-test.txt
diff --git a/CHANGELOG b/CHANGELOG
index fd29f9f..e7fea8a 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,7 @@
+0.12.1
+
+ Add support for Python 3.7
+
0.12.0
Drop support for Python 3.3
diff --git a/setup.py b/setup.py
index 3ac0729..c3afd0f 100755
--- a/setup.py
+++ b/setup.py
@@ -100,6 +100,7 @@ A comprehensive HTTP client library, ``httplib2`` supports many features left ou
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
+ "Programming Language :: Python :: 3.7",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
),