Skip to content

Commit

Permalink
no cython in windows
Browse files Browse the repository at this point in the history
  • Loading branch information
lsbardel committed Nov 20, 2017
1 parent 32ef61b commit 04186b4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions extensions/lib/clib.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@ cdef extern from "math.h":

cdef double clog2 = log(2.)

cdef inline int int_max(int a, int b): return a if a >= b else b
cdef inline int int_min(int a, int b): return a if a >= b else b
cdef inline int int_max(int a, int b):
return a if a >= b else b


cdef inline int int_min(int a, int b):
return a if a >= b else b


# MSVC does not have log2!
Expand Down
1 change: 1 addition & 0 deletions requirements/ci.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-r test.txt
cython
uvloop
httptools
1 change: 0 additions & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
flake8
coverage
codecov
cython
greenlet
flask
oauthlib
Expand Down

0 comments on commit 04186b4

Please sign in to comment.