-
Notifications
You must be signed in to change notification settings - Fork 11
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 lock so many pkgs to OLD versions in requirements.txt? #18
Comments
We could slim down, running pipreqs we see: |
With minor modifications all of the latest libraries can be used. import Celerey from flask_celerey becomes simply "... from celery" Changes to flask_security require the following addition in init_administration() of your app (along with necessary imports):
A few old-style flask.ext imports need to be updated. Seems to be working with all the latest libraries for me. Unfortunately I did this all ad hoc so I can't recall all the changes, but there weren't many. The big one was the security context... |
@demospace - Pull request incoming? |
If I wasn't such a hack I would have figured out how to do that properly by now. Instead I just make changes as I go and there are many I'm sure no one else will want. If you have detailed instructions on how to setup the PR with just my pip installed version of the lib, then I will try to pull out my idiosyncratic customizations and submit the PR... |
For example:
I understand locking these in your own dev environments perhaps, but does your code REALLY not work with libraries as much as a full major version more recent?
That seems like a flask-diamond problem that scares me.
Thoughts?
The text was updated successfully, but these errors were encountered: