Skip to content

Commit 8c2483c

Browse files
committed
Require rx<3 since new version is not compatible (#235)
Rx 3.0 is not compatible with Python 2.7 and does not have used extension methods.
1 parent ef97e3d commit 8c2483c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
sys.path[:] = path_copy
2323

24-
install_requires = ["six>=1.10.0", "promise>=2.1", "rx>=1.6.0"]
24+
install_requires = ["six>=1.10.0", "promise>=2.1", "rx>=1.6,<3"]
2525

2626
tests_requires = [
2727
"pytest>=3.3,<4.0",

0 commit comments

Comments
 (0)