Skip to content

Commit 3ef5d68

Browse files
committed
hyper unification
1 parent d9341f0 commit 3ef5d68

24 files changed

+125
-104
lines changed

.codecov.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
comment: off

.coveragerc

Lines changed: 0 additions & 16 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ dist/
55
*.pyc
66
__pycache__
77
.coverage
8+
coverage.xml
89
.tox/
910
.cache
1011
.hypothesis

.travis.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.travis/install.sh

Lines changed: 0 additions & 8 deletions
This file was deleted.

.travis/run.sh

Lines changed: 0 additions & 11 deletions
This file was deleted.

HISTORY.rst renamed to CHANGELOG.rst

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,25 @@
11
Release History
22
===============
33

4-
3.1.0dev0
4+
4.0.0+dev
55
---------
66

7+
API Changes (Backward-Incompatible)
8+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9+
10+
- Support for Python 2.7 has been removed.
11+
- Support for Python 3.4 has been removed.
12+
- Support for Python 3.5 has been removed.
13+
- Support for PyPy (Python 2.7 compatible) has been removed.
14+
- Support for Python 3.8 has been added.
15+
716
**API Changes (Backward Compatible)**
817

918
**Bugfixes**
1019

1120
- Performance improvement of static header search. Use dict search instead
1221
of linear search.
22+
- Fix debug output of headers during encoding.
1323

1424

1525
3.0.0 (2017-03-29)

MANIFEST.in

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
1-
include README.rst LICENSE CONTRIBUTORS.rst HISTORY.rst
2-
1+
graft src
2+
graft docs
3+
graft test
4+
prune bench
5+
prune docs/build
6+
prune utils
7+
prune tasks.py
8+
include README.rst LICENSE CHANGELOG.rst CONTRIBUTORS.rst tox.ini Makefile
9+
global-exclude *.pyc *.pyo *.swo *.swp *.map *.yml *.DS_Store

Makefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1-
.PHONY: publish test sample_output
1+
.PHONY: publish sample_output
22

33
publish:
44
rm -rf dist/
55
python setup.py sdist bdist_wheel
66
twine upload -s dist/*
77

8-
test:
9-
py.test -n 4 --cov hyper test/
10-
118
sample_output:
129
rm -rf hpack-test-case/
1310
git clone https://github.com/http2jp/hpack-test-case.git

README.rst

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,24 @@
22
hpack: HTTP/2 Header Encoding for Python
33
========================================
44

5-
.. image:: https://raw.github.com/Lukasa/hyper/development/docs/source/images/hyper.png
5+
.. image:: https://github.com/python-hyper/hpack/workflows/CI/badge.svg
6+
:target: https://github.com/python-hyper/hpack/actions
7+
:alt: Build Status
8+
.. image:: https://codecov.io/gh/python-hyper/hpack/branch/master/graph/badge.svg
9+
:target: https://codecov.io/gh/python-hyper/hpack
10+
:alt: Code Coverage
11+
.. image:: https://readthedocs.org/projects/hpack/badge/?version=latest
12+
:target: https://hpack.readthedocs.io/en/latest/
13+
:alt: Documentation Status
14+
.. image:: https://img.shields.io/badge/chat-join_now-brightgreen.svg
15+
:target: https://gitter.im/python-hyper/community
16+
:alt: Chat community
617

7-
.. image:: https://travis-ci.org/python-hyper/hpack.png?branch=master
8-
:target: https://travis-ci.org/python-hyper/hpack
18+
.. image:: https://raw.github.com/Lukasa/hyper/development/docs/source/images/hyper.png
919

1020
This module contains a pure-Python HTTP/2 header encoding (HPACK) logic for use
1121
in Python programs that implement HTTP/2.
1222

13-
Documentation
14-
=============
15-
16-
Documentation is available at http://python-hyper.org/hpack/.
17-
1823
Contributing
1924
============
2025

0 commit comments

Comments
 (0)