-
Notifications
You must be signed in to change notification settings - Fork 58
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
DEP: Drop Python 3.8 support #1282
base: main
Are you sure you want to change the base?
Conversation
c16d6bb
to
8394dac
Compare
The required Python 3.8 checks will stay in an expecting state until they're removed from repo settings (i.e. after this PR). |
@@ -120,7 +118,6 @@ match = '(?!(test_|_)).*\.py' | |||
|
|||
[tool.pytest.ini_options] | |||
minversion = "6.0" | |||
addopts = "--verbose" |
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.
Just to reduce the 1500 line terminal flood when running the tests down to a grid of dots
# "B", # flake-8-bugbear | ||
"C", # pylint-convention | ||
"E", # pycodestyle-error | ||
"F", # pyflakes | ||
"I", # isort | ||
# "NPY", # numpy |
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.
A few extra linting jobs that would be nice to add, with labels of what these are
patch( | ||
"builtins.open", |
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.
ruff wanted to do this now, idk
Resolves #1277