Skip to content

Commit

Permalink
Merge pull request #59 from pconerly/upgrade-to-cython-0.28.2
Browse files Browse the repository at this point in the history
Upgrade Cython to 0.28.2
  • Loading branch information
swistakm committed Apr 15, 2018
2 parents 6486f85 + 0463983 commit e45c664
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -109,5 +109,8 @@ ENV/
# Pycharm project settings
.idea/

# Visual Studio Code project settings
.vscode/

# Bootstrap marker
.bootstrapped
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>=0.24,<=0.27.3
Cython>=0.24,<=0.28.2
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>=0.24,<=0.27.3
Cython>=0.24,<=0.28.2
Sphinx==1.4.8
docutils<0.13.1
PyOpenGL
Expand Down
2 changes: 1 addition & 1 deletion doc/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Cython>=0.24,<=0.27.3
Cython>=0.24,<=0.28.2
click
# note: sphinx and docutils are for collecting tests
Sphinx==1.4.8
Expand Down
2 changes: 1 addition & 1 deletion imgui/core.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -2026,7 +2026,7 @@ def end_menu():


def menu_item(
str name, str shortcut=None, cimgui.bool selected=None, enabled=True
str name, str shortcut=None, cimgui.bool selected=False, enabled=True
):
"""Create a menu item.
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,<=0.27.3'],
'Cython': ['Cython>=0.24,<=0.28.2'],
'cocos2d': backend_extras('cocos2d'),
'sdl2': backend_extras('PySDL2'),
'glfw': backend_extras('glfw'),
Expand Down

0 comments on commit e45c664

Please sign in to comment.