File tree 2 files changed +21
-0
lines changed
2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 41
41
docker :
42
42
- image : python:3.8
43
43
<< : *test
44
+ twine_check :
45
+ docker :
46
+ - image : python:3.8
47
+ working_directory : ~/bencoder.pyx
48
+ steps :
49
+ - checkout
50
+ - run :
51
+ name : install dependencies
52
+ command : |
53
+ pip install -U pip setuptools wheel twine
54
+ pip install -r dev-requirements.txt
55
+ - run :
56
+ name : build wheel
57
+ command : |
58
+ python setup.py bdist_wheel
59
+ - run :
60
+ name : twine check
61
+ command : |
62
+ twine check dist/*.whl
44
63
pypy :
45
64
docker :
46
65
- image : pypy:2
@@ -83,3 +102,4 @@ workflows:
83
102
- py38
84
103
- pypy
85
104
- pypy3
105
+ - twine_check
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ A fast bencode implementation in Cython supports both Python2 & Python3 .
12
12
.. image :: https://codecov.io/gh/whtsky/bencoder.pyx/branch/master/graph/badge.svg
13
13
:alt: Codecov Coverage
14
14
:target: https://codecov.io/gh/whtsky/bencoder.pyx
15
+
15
16
Install
16
17
-------
17
18
You can’t perform that action at this time.
0 commit comments