-
Notifications
You must be signed in to change notification settings - Fork 74
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
Require version in tools installed by pip #1242
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for adding the versions @sara-rn!! 💐 As noticed by the linter, you have forgotten to update the version in the ipython.vm nuspec. Also, ensure to follow good commit practices such as limiting the subject line to 50 characters and using the body to explain what and why you make the changes. I recommend reading https://cbea.ms/git-commit for more info on best practices to write good commit messages. 😉
27b6ab9
to
0b4e293
Compare
dff9f40
to
f9fbebb
Compare
@@ -2,7 +2,7 @@ | |||
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd"> | |||
<metadata> | |||
<id>ipython.vm</id> | |||
<version>8.27.0.20241001</version> | |||
<version>8.27.0</version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you have decreased the version (by removing the date) causing that our CI is testing the old package version without the version, which now fails as it is required. Ensure you increase the version:
<version>8.27.0</version> | |
<version>8.27.0.20250122</version> |
More context:
In autoit-ripper.vm the version has been increased, so the date is not needed.
Note the version in ipython.vm was wrong before as it should have used the 0.0.0.DATE
format as we didn't use a version when installing the tool.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Ana06 changes have been addressed
f9fbebb
to
7cf3d2c
Compare
Update tools installed with pip to include the version in the install script, required by VM-Install-with-PIP.
7cf3d2c
to
7ddd292
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The CI is finally happy, thanks @sara-rn for all the changes! 😊
Closes #1240
Change the version parameter to required and change tools installed with PIP to include the version