-
Notifications
You must be signed in to change notification settings - Fork 32
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
Update dependency versions #393
Update dependency versions #393
Conversation
Could you also update the github actions so that the linting will run? |
I don't have write access to this repo, so I can't update the actions |
There you go. There's a fair bit it's going to yell about, as there were some notable improvements. Unforunately, I don't think there's an auto fix for the fstrings, and they are legitimately better than str.format computationally |
…x, like line length in some log statements, and too many args
I'd reccomend adding line level pylint exceptions on those functions. For the log lines that are too long, you could do that same thing, or you could use python's method of splitting a line if there are logical places to |
Part of doing this was that I removed 'bad-continuation' from the disable list in the .pylintrc bc the linting action said that option has been removed from pylint. I left it commented out for now to make sure the lint passes, but I can delete it entirely before this pr is merged assuming this fix passes the check
Updated to python 3.12, made the base image in the Dockerfile Debian 12, and updated dependency versions to be more up to date
oh i also made the dockerfile install libldap-common to fix the python-ldap issue