File tree Expand file tree Collapse file tree 3 files changed +9
-13
lines changed Expand file tree Collapse file tree 3 files changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,7 @@ Bencoder.pyx
3
3
4
4
A fast bencode implementation in Cython supports both Python2 & Python3 .
5
5
6
- .. image :: https://img.shields.io/travis/whtsky/bencoder.pyx/master.svg?maxAge=3600&label=macOS
7
- :alt: macOS Test Status
8
- :target: https://travis-ci.org/whtsky/bencoder.pyx
9
- .. image :: https://img.shields.io/appveyor/ci/whtsky/bencoder-pyx/master.svg?maxAge=3600&label=Windows
10
- :alt: Windows Test Status
11
- :target: https://ci.appveyor.com/project/whtsky/bencoder-pyx
12
- .. image :: https://img.shields.io/circleci/ci/whtsky/bencoder-pyx/master.svg?maxAge=3600&label=Linux
6
+ .. image :: https://img.shields.io/circleci/build/github/whtsky/bencoder.pyx/master
13
7
:alt: Linux Test Status
14
8
:target: https://circleci.com/gh/whtsky/bencoder.pyx
15
9
.. image :: https://img.shields.io/pypi/l/bencoder.pyx.svg
@@ -18,10 +12,6 @@ A fast bencode implementation in Cython supports both Python2 & Python3 .
18
12
.. image :: https://codecov.io/gh/whtsky/bencoder.pyx/branch/master/graph/badge.svg
19
13
:alt: Codecov Coverage
20
14
:target: https://codecov.io/gh/whtsky/bencoder.pyx
21
- .. image :: https://pypistats.com/badge/bencoder-pyx.svg
22
- :alt: bencoder-pyx PyPI Downloads
23
- :target: https://pypistats.com/package/bencoder-pyx
24
-
25
15
Install
26
16
-------
27
17
53
43
ChangeLog
54
44
----------
55
45
46
+ Version 2.0.1
47
+ ~~~~~~~~~~~~~~~
48
+
49
+ + Add support for Python 3.8
50
+ + Drop support for Python 3.4
51
+
56
52
Version 2.0.0
57
53
~~~~~~~~~~~~~~~
58
54
Original file line number Diff line number Diff line change 12
12
13
13
# Based on https://github.com/karamanolev/bencode3/blob/master/bencode.py
14
14
15
- __version__ = ' 2.0.0 '
15
+ __version__ = ' 2.0.1 '
16
16
17
17
18
18
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ def get_tag(self):
94
94
95
95
setup (
96
96
name = 'bencoder.pyx' ,
97
- version = '2.0.0 ' ,
97
+ version = '2.0.1 ' ,
98
98
description = 'Yet another bencode implementation in Cython' ,
99
99
long_description = open ('README.rst' , 'r' ).read (),
100
100
author = 'whtsky' ,
You can’t perform that action at this time.
0 commit comments