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

Commit b61639f

Browse files
committed
Document support for Python 2.7.9.
1 parent bf16208 commit b61639f

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Diff for: HISTORY.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Release History
2222
- Support for HTTP/2 draft 15, and 16. No drop of support for draft 14.
2323
- Updated bundled certificate file.
2424

25-
*Bugfixes *
25+
*Bugfixes*
2626

2727
- Fixed ``AttributeError`` being raised when a PING frame was received, thanks
2828
to @t2y. (`Issue #79`_)

Diff for: docs/source/index.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ improved speed, lower bandwidth usage, better connection management, and more.
2323
print(resp.read())
2424

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

29-
``hyper`` supports Python 3.4.
29+
``hyper`` supports Python 3.4 and Python 2.7.9.
3030

3131
Caveat Emptor!
3232
--------------

Diff for: setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ def resolve_install_requires():
5656
'Intended Audience :: Developers',
5757
'License :: OSI Approved :: MIT License',
5858
'Programming Language :: Python',
59+
'Programming Language :: Python :: 2',
60+
'Programming Language :: Python :: 2.7',
5961
'Programming Language :: Python :: 3',
6062
'Programming Language :: Python :: 3.4',
6163
'Programming Language :: Python :: Implementation :: CPython',

0 commit comments

Comments
 (0)