Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Why those harsh == requirements? #37

Open
maxnoe opened this issue Sep 14, 2015 · 1 comment
Open

Why those harsh == requirements? #37

maxnoe opened this issue Sep 14, 2015 · 1 comment
Labels

Comments

@maxnoe
Copy link

maxnoe commented Sep 14, 2015

I would really like to use your package, it looks like an awesome simplicfication for trying different ML algorithms and frameworks.

What's currently stopping me from using it, are the == requirements for rather old package versions,
especially pandas 0.14.

Why do you need those == requirements?

Could you check if anything gets broken with newer versions and change the requirement to >=?

@arogozhnikov
Copy link
Contributor

Hi, Maximilian.

Thanks for question, this is an important point we didn't cover in the documentation.

REP is trying to incorporate two contradictory things:

  1. Uniform support of rapidly evolving ML packages
  2. Reproducibility for years. This means, once the code was written based on REP, we expect it to work (with the same version of REP!) years after.

We cannot guarantee that next versions of library will be back-compatible (and in practice, they aren't).
Specially this is related to pandas, it's results were changing over time when pandas communicating with matplotlib or numpy.

So we have to use fixed versions for each release.

There is nothing special about 0.14 (or any other versions we use), we will update libraries from time to time after testing that updated versions work fine (or changing necessary pieces of code).

If you need some newer versions of libraries, you can install them (and almost surely this will work).
A convenient way to have custom reproducible environment is described here.

If you feel real need in updating some dependencies, open an issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants