-
Notifications
You must be signed in to change notification settings - Fork 47
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
dogpile.cache 1.0.0 cannot be installed on Python 3.5 because stevedore requires 3.6+ #184
Comments
well we probably have to bump dogpile.cache to 3.6 then, no mystery there. cc @dhellmann |
You could use conditional requirements to specify a different version of stevedore for older dogpile.cache. Something like:
|
Why don't we just make the requirement "stevedore>=2.0.0" across the board? if they are on a newer python they will get the newer stevedore unless they have an old version still lying around, in which case, that still works they just have fewer features. |
Mike Bayer has proposed a fix for this issue in the master branch: Lower stevedore minimum version to 2.0.0 https://gerrit.sqlalchemy.org/c/sqlalchemy/dogpile.cache/+/2101 |
stevedore 2.0 can't be installed on 3.5 either. I don't mind if dogpile.cache 1.0.1 requires 3.6, but could you yank 1.0.0 once it's released so that pip will install 0.9.2 on Python 3.5? |
guess we have to do that too. |
so we will pin to 3.6 but I also have to figure out how to do #185 |
what's the difference between "yank" and "delete" on Pypi? I did a yank. |
yank doesn’t prevent pip installing that exact version when requested, but it won’t choose that version on its own. I.e. 3.6 users who pinned 1.0.0 can keep using it and 3.5 users who didn’t pin a version will get 0.9.2 |
Version 1.0.0 was yanked but Travis CI still installs it. Need to wait for a newer fixed version on Travis. sqlalchemy/dogpile.cache#184
Version 1.0.0 was yanked but Travis CI still installs it. Need to wait for a newer fixed version on Travis. sqlalchemy/dogpile.cache#184
Version 1.0.0 was yanked but Travis CI still installs it. Need to wait for a newer fixed version on Travis. sqlalchemy/dogpile.cache#184
Trying to install dogpile.cache in a
python:3.5
docker image yields the following error:The text was updated successfully, but these errors were encountered: