-
Notifications
You must be signed in to change notification settings - Fork 39
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
MAINT: dropping python3.8 support #274
Conversation
tests/test_doctestplus.py
Outdated
@@ -314,7 +314,7 @@ def test_normalize_with_ellipsis(self): | |||
c = OutputChecker() | |||
got = [] | |||
for char in ['A', 'B', 'C', 'D', 'E']: | |||
got.append('%s %s' % (char, float(ord(char)))) | |||
got.append('{} {}'.format(char, float(ord(char)))) |
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.
Hmm why no f-string here?
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.
Automated mess I guess 🤷♀️
I mean, I pushed stuff before boarding a flight, but as I said above there is some weird stuff happening locally already so I'll very likely have to follow up with more manual fixes
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.
No rush on my end. Thanks!
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.
local issues were due to outdate plugins
Co-authored-by: P. L. Lim <2090236+pllim@users.noreply.github.com>
I have some issues locally when running the tests, please don't merge this just yet even if CI is all green, so I can ensure that it's indeed just a local issue (I don't see it with tox, but do see it when running tests directly in the source)