Add MANIFEST.in, release version 2.2.2

This commit is contained in:
Brian Muller 2021-02-04 12:35:57 -05:00
parent e925d492d3
commit f0c7972148
No known key found for this signature in database
GPG Key ID: 19A500213CC84E3B
5 changed files with 9 additions and 2 deletions

1
.gitignore vendored
View File

@ -8,3 +8,4 @@ dist
kademlia.egg-info
docs/_build
.coverage
.coverage.*

View File

@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Verson 2.2.2 (2021-02-04)
### Enhancements
* Added a MANIFEST.in so the source distribution can retain necessary requirements.txt file
## Verson 2.2.1 (2020-05-02)
### Enhancements

1
MANIFEST.in Normal file
View File

@ -0,0 +1 @@
include requirements.txt

View File

@ -2,4 +2,4 @@
Kademlia is a Python implementation of the Kademlia protocol which
utilizes the asyncio library.
"""
__version__ = "2.2.1"
__version__ = "2.2.2"

View File

@ -9,7 +9,7 @@ from kademlia.node import Node
from kademlia.routing import RoutingTable
@pytest.yield_fixture
@pytest.fixture()
def bootstrap_node(event_loop):
server = Server()
event_loop.run_until_complete(server.listen(8468))