We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc8c862 commit af4eea4Copy full SHA for af4eea4
.travis.yml
@@ -14,8 +14,15 @@ python:
14
15
matrix:
16
include:
17
+ - name: Black
18
+ language: python
19
+ python: 3.8
20
+ install:
21
+ - pip install black
22
+ script:
23
+ - black --check --diff .
24
+
25
- name: 32bit build
- sudo: required
26
language: python
27
services:
28
- docker
Makefile
@@ -2,6 +2,10 @@
2
all: cython
3
python setup.py build_ext -i -f
4
5
+.PHONY: black
6
+black:
7
+ black .
8
9
.PHONY: cython
10
cython:
11
cython --cplus msgpack/_cmsgpack.pyx
0 commit comments