Add MANIFEST.in, release version 2.2.2
This commit is contained in:
parent
e925d492d3
commit
f0c7972148
1
.gitignore
vendored
1
.gitignore
vendored
@ -8,3 +8,4 @@ dist
|
||||
kademlia.egg-info
|
||||
docs/_build
|
||||
.coverage
|
||||
.coverage.*
|
@ -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
1
MANIFEST.in
Normal file
@ -0,0 +1 @@
|
||||
include requirements.txt
|
@ -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"
|
||||
|
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user