-
Notifications
You must be signed in to change notification settings - Fork 532
refactor: Fixes #4578 #4938
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
base: main
Are you sure you want to change the base?
refactor: Fixes #4578 #4938
Conversation
… unknown or a metrics_id)
.pre-commit-config.yaml
Outdated
@@ -26,7 +26,7 @@ repos: | |||
hooks: | |||
- id: pyupgrade | |||
exclude: ^fuzz/generated/ | |||
args: ["--py38-plus"] | |||
args: ["--py312-plus"] |
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.
args: ["--py312-plus"] | |
args: ["--py39-plus"] |
We actually do want to keep this at py39-plus since we still support python 3.9. This may result in you having to make some other fixes below.
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.
done 👍
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.
Looks like dev-requirements.txt got a bit messed up, probably because this PR is old and there's been some other changes in there (both version bumps and alphabetization), but I don't want to revert a bunch of versions. Can you take that file out of this PR and we'll deal with taking out the < 3.8 stuff some other time? It's either that or rebase and then manually fix it, but I'm pretty sure it'll be easier to just do it separately.
Yeah sure thing 👍 |
I think it should be good now |
Removed python 3.8 support.
Happy to make any changes if are required.
Thanks