-
Notifications
You must be signed in to change notification settings - Fork 173
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
[FEATURE REQUEST] discourage frosted #501
Comments
- frosted = {version = ">=1.4.1", optional = true}
+ frosted = {version = ">=1.4.1;python_version<"3.10"", optional = true} Could works, right ? |
Oh, sorry. I seem to have missed the point. |
Yes, I already have plans to remove frosted in versions 2+ and to add deprecation warnings starting with 1.8 In the meantime, I will be able to add the additional python version filter (as @Pierre-Sassoulas suggested) along with explicit documentation that Frosted is definitely going to be removed, I just need to do it carefully to be backwards compatible. |
Nice. |
Is your feature request related to a problem? Please describe.
frosted
does not work with python 3.10.That's natural because
frosted
is deprecated for some years.But when you install
prospector[with_everything]
,frosted
will be installed. Then if you runprospector -w frosted
, you will get errors.Thus
with_everything
is discouraged.Describe the solution you'd like
Where
with_everything
is introduced in the documentation, annotate to recommendwith_pyroma,with_vulture,with_mypy,with_bandit
instead asfrosted
is deprecated.Describe alternatives you've considered
Stop supporting
frosted
.This is not good because backward compatibility will be broken.
The text was updated successfully, but these errors were encountered: