React 15 not compatible with React-redux

Viewed 3478

I am trying to upgrade to the freshly released react@15.0.0-rc.1 on my project that is also using react-redux@^4.4.0 package. However when I try to run the upgrade suggested in the documentation (https://facebook.github.io/react/blog/2016/03/07/react-v15-rc1.html)

npm install --save react@15.0.0-rc.1 react-dom@15.0.0-rc.1

It comes up with an error because the versions are not compatible:

npm ERR! peerinvalid Peer react-addons-test-utils@0.14.7 wants react@^0.14.7
npm ERR! peerinvalid Peer react-redux@4.4.0 wants react@^0.14.0

Any suggestion please?

1 Answers
Related