shyam-s00 / ObservableCollections

A Rx based ObservableCollections implementation in Python
MIT License
4 stars 2 forks source link

Error on python 3.6. plz help #2

Open ikuibida opened 4 years ago

ikuibida commented 4 years ago

image

lisandromc commented 4 years ago

The problem is that observable-collections does not specify a version for its rx dependency.

In the meantime, the Rx folks rearranged things with the release of v3.0.0. Apparently, Observer was not meant to be exported from the main package and ObservableBase was not intended to be part of the public API, since it has been removed.

The workaround is to install rx v1.5.9 instead of 'just the latest version of rx' pip install rx==1.5.9

The fix is to specify the 1.5.9 version of Rx in the dependencies.

shyam-s00 commented 4 years ago

RxPy has changed a lot since 1.x. I'll try to add support to RxPy 3.x

shyam-s00 commented 4 years ago

Duplicate of #1

shyam-s00 commented 4 years ago

@ikuibida Initial support added.