Skip to content
This repository has been archived by the owner on Jan 13, 2021. It is now read-only.

Commit

Permalink
Document support for Python 2.7.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasa committed Feb 7, 2015
1 parent bf16208 commit b61639f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Release History
- Support for HTTP/2 draft 15, and 16. No drop of support for draft 14.
- Updated bundled certificate file.

*Bugfixes *
*Bugfixes*

- Fixed ``AttributeError`` being raised when a PING frame was received, thanks
to @t2y. (`Issue #79`_)
Expand Down
6 changes: 3 additions & 3 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ improved speed, lower bandwidth usage, better connection management, and more.
print(resp.read())

Simple. ``hyper`` is written in 100% pure Python, which means no C extensions.
For recent versions of Python (3.4 and onward) it's entirely self-contained
with no external dependencies.
For recent versions of Python (3.4 and onward, and 2.7.9 and onward) it's
entirely self-contained with no external dependencies.

``hyper`` supports Python 3.4.
``hyper`` supports Python 3.4 and Python 2.7.9.

Caveat Emptor!
--------------
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ def resolve_install_requires():
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
Expand Down

0 comments on commit b61639f

Please sign in to comment.