File tree Expand file tree Collapse file tree 3 files changed +23
-4
lines changed Expand file tree Collapse file tree 3 files changed +23
-4
lines changed Original file line number Diff line number Diff line change
1
+ language : python
2
+
3
+ os :
4
+ - linux
5
+
6
+ python :
7
+ - 3.5
8
+
9
+ install :
10
+ - " pip install --no-binary=:all: cython"
11
+ - make
12
+
13
+ script :
14
+ - make test
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ all: clean compile
5
5
6
6
7
7
clean :
8
- rm -fdr dist/
9
- rm -fdr uvloop/* .c uvloop/* .html uvloop/* .so build * .egg-info
10
- rm -fdr uvloop/handles/* .html uvloop/includes/* .html
8
+ rm -fr dist/
9
+ rm -fr uvloop/* .c uvloop/* .html uvloop/* .so build * .egg-info
10
+ rm -fr uvloop/handles/* .html uvloop/includes/* .html
11
11
find . -name ' __pycache__' | xargs rm -rf
12
12
13
13
Original file line number Diff line number Diff line change
1
+ .. image :: https://travis-ci.org/MagicStack/uvloop.svg?branch=master
2
+ :target: https://travis-ci.org/MagicStack/uvloop
3
+
4
+
1
5
An implementation of asyncio-compatible event loop on top of libuv.
2
6
This is a research prototype, do not use it in production.
3
7
4
8
5
- # Build Instructions
9
+ Build Instructions
10
+ ------------------
6
11
7
12
You'll need `Cython ` and Python 3.5. The best way is to create
8
13
a virtual env, so that you'll have `cython ` and `python ` commands
You can’t perform that action at this time.
0 commit comments