Open systemallica opened 4 years ago
@systemallica Thank you for creating this issue. I think it's a great idea. I will try it.
@systemallica I can't see the popup in my environment :thinking: How do I reproduce showing the popup?
@koxudaxi I think it's a feature of this plugin: https://plugins.jetbrains.com/plugin/10837-requirements
Sorry I forgot go mention it.
@systemallica OK, I will check it.
I have understood how do I implement it. I will try it :rocket:
Glad to hear that! Keep up the good work 😁
@systemallica
I have implemented the feature.
This plugin run poetry show --outdated
to get outdated version.
The feature only shows a warning when there is the latest version. It doesn't provide QuickFix that is an action to resolve the warning (exp install a new version) because I don't know what does the plugin should do it.
How did you think about it?
That looks awesome! Thank you very much.
It's ok if it doesn't offer you a quickfix, knowing that there's a new version is the most important part imo. Then the user can change the version manually and run 'poetry update' ☺️
OK, I have pushed the latest version to the JetBrains server via GitHub Action. It will be approved within two business days. After, we can download it.
@koxudaxi I just installed 0.1.2 and it works pretty well, thank you!
However I noticed that the plugin does not look for new versions until I modify the pyproject.toml
file. If I'm not mistaken, with a requirements.txt
file, the inspection happens automatically without the need of modifying the file. Is this something that could be done withe your plugin?
Another thing I noticed is that, once a package is highlighted, it will remain highlighted until you:
poetry update
Imo, it should stop being highlighted after step 1. What do you think?
Anyway thank you for your work :D
@systemallica
However I noticed that the plugin does not look for new versions until I modify the pyproject.toml file.
I may have to change the way to inspect pyproject.toml
:thinking:
Imo, it should stop being highlighted after step 1. What do you think?
Now, The plugin calls poetry show --outdated
when pycharm detect package updated.
And, outdated versions will be highlighted.
It means the plugin doesn't parse pyproject.toml
.
Change the version
If we want to detect the version in the plugin then I have to implement a version parser. I need the time to do it.
Sorry, I am not a PyCharm master. I must learn PyCharm APIs to develop plugins :nerd_face:
I don't close this issue. I will improve the feature when I get the time.
I just wanted to add an edge case here to be aware of. poetry show --outdated
compares against the installed lock version and whats available. Starting to use the plugin it was highlighting some of my dependencies with versions like ^8.0.0.
saying the version is outdated and a newer one is available like 8.1.0
.
This technically is correct from the lock standpoint but incorrect from the pyproject.toml standpoint.
As you mentioned you do not parse the version in the plugin so this is hard to avoid, but stating that the lock file is out of date or something there might aid in confusion when the version string would catch the latest version.
Add package highlighting in
pyproject.toml
when a new version is available, in the same way that it's done forrequirements.txt
: