-
Notifications
You must be signed in to change notification settings - Fork 71
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
fix(templates): replace flake8 and pydocstyle with ruff #1941
Conversation
b11d853
to
5ed77fa
Compare
5ed77fa
to
fa3a7a6
Compare
@@ -18,7 +18,6 @@ cryptography==43.0.1 | |||
dill==0.3.9 | |||
distro==1.9.0 | |||
docker==7.1.0 | |||
flake8==7.1.1 |
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.
Those are flake8
install_requirements, are other tools still rely on them if you delete it ?
mccabe>=0.7.0,<0.8.0
pycodestyle>=2.12.0,<2.13.0
pyflakes>=3.2.0,<3.3.0
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.
Not entirely sure, but once I merge in some uv-based changes those will be automatically recalculated.
# Copyright {{ year }} {{ author }} | ||
# See LICENSE file for licensing details. |
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.
Shouldn't be worth to move this tox
configuration to the pyproject.toml
as you require 4.0.0
minimal version anyway?
https://tox.wiki/en/latest/config.html#pyproject-toml-native
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.
Possibly, but out of scope as this is just copying the tox files from the other templates.
0dc20bf
to
4079119
Compare
Fixes #1461