Skip to content

Commit

Permalink
restrict Cython versions because project fails to build on Cython==0.…
Browse files Browse the repository at this point in the history
…28.*
  • Loading branch information
Michał Jaworski committed Apr 6, 2018
1 parent beeaf80 commit 488fcdb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion doc/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Cython
Cython>=0.24,<=0.27.3
PyOpenGL
glfw
wheel
Expand Down
2 changes: 1 addition & 1 deletion doc/requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Cython
Cython>=0.24,<=0.27.3
Sphinx==1.4.8
docutils<0.13.1
PyOpenGL
Expand Down
3 changes: 1 addition & 2 deletions doc/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
wheel
Cython
Cython>=0.24,<=0.27.3
click
# note: sphinx and docutils are for collecting tests
Sphinx==1.4.8
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def backend_extras(*requirements):
return ["PyOpenGL"] + list(requirements)

EXTRAS_REQUIRE = {
'Cython': ['Cython>=0.24'],
'Cython': ['Cython>=0.24,<=0.27.3'],
'cocos2d': backend_extras('cocos2d'),
'sdl2': backend_extras('PySDL2'),
'glfw': backend_extras('glfw'),
Expand Down

0 comments on commit 488fcdb

Please sign in to comment.