diff --git a/.travis.yml b/.travis.yml index de00235d..fffeab60 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ python: - "3.4" - "3.5" - "3.6" + - "3.7-dev" # - "pypy" -- appears to hang # - "pypy3" # command to install dependencies diff --git a/AUTHORS.rst b/AUTHORS.rst index 1dbd0409..c05befce 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -174,3 +174,4 @@ Patches and Suggestions - Philipp Konrad (`@gardiac2002 `_) - Hussain Tamboli (`@hussaintamboli `_) - Casey Davidson (`@davidsoncasey `_) +- Andrii Soldatenko (`@a_soldatenko `_) diff --git a/README.rst b/README.rst index e1783b70..43686998 100644 --- a/README.rst +++ b/README.rst @@ -10,7 +10,9 @@ Requests: HTTP for Humans .. image:: https://img.shields.io/badge/SayThanks.io-☼-1EAEDB.svg :target: https://saythanks.io/to/kennethreitz - +.. image:: https://codecov.io/github/kennethreitz/requests/coverage.svg?branch=master + :target: https://codecov.io/github/kennethreitz/requests + :alt: codecov.io Requests is the only *Non-GMO* HTTP library for Python, safe for human consumption. diff --git a/docs/community/faq.rst b/docs/community/faq.rst index c87687af..e835b122 100644 --- a/docs/community/faq.rst +++ b/docs/community/faq.rst @@ -59,6 +59,7 @@ supported: * Python 3.3 * Python 3.4 * Python 3.5 +* Python 3.6 * PyPy What are "hostname doesn't match" errors? diff --git a/docs/dev/todo.rst b/docs/dev/todo.rst index 79b95a21..14dafed3 100644 --- a/docs/dev/todo.rst +++ b/docs/dev/todo.rst @@ -41,6 +41,7 @@ Requests currently supports the following versions of Python: - Python 3.3 - Python 3.4 - Python 3.5 +- Python 3.6 - PyPy Google AppEngine is not officially supported although support is available diff --git a/setup.py b/setup.py index 3e0f1555..b1623489 100755 --- a/setup.py +++ b/setup.py @@ -88,6 +88,7 @@ setup( 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy' ),