Skip to content

Commit

Permalink
Insist on Cython prior to 3.0 (#1061)
Browse files Browse the repository at this point in the history
Hopefully this is a quick-fix for #1060 - but a more permanent fix will be needed at some future point.

Now includes a work-around for #1062
  • Loading branch information
corranwebster committed Jul 21, 2023
1 parent 5f5e4c4 commit 84b611d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions enable/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
# Dependencies for PySide6
"pyside6": ["pyface[pyside6]", "traitsui[pyside6]"],
# Dependencies for PySide2
"pyside2": ["pyface[pyside2]", "traitsui[pyside2]"],
"pyside2": ["pyface[pyside2]", "traitsui[pyside2]", "pillow<10"],
# Dependencies for PyQt6
"pyqt6": ["pyface[pyqt6]", "traitsui[pyqt6]"],
# Dependencies for PyQt5
"pyqt5": ["pyface[pyqt5]", "traitsui[pyqt5]"],
"pyqt5": ["pyface[pyqt5]", "traitsui[pyqt5]", "pillow<10"],
# Dependencies for WxPython
"wx": ["pyface[wx]", "traitsui[wx]"],
# Dependencies for null backend (nothing right now)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["cython", "oldest-supported-numpy", "setuptools", "swig", "wheel"]
requires = ["cython<3", "oldest-supported-numpy", "setuptools", "swig", "wheel"]
build-backend = "setuptools.build_meta"

[tool.cibuildwheel]
Expand Down

0 comments on commit 84b611d

Please sign in to comment.