You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently working on a draft PR to add type hint annotations and I noticed black installs an older version in python3.6 & python3.7. This is causing inconsistent results in tox due to changes in formatting between older and newer versions of black.
force black to an older version in all supported versions of python
have black only check in a subset or even singular version of python.
this will be tricky as the current testing is done in tox then in docker; for as long as the package supports older (no longer supported) versions of python.
drop support for older python versions.
seems above my paygrade to suggest, but would eliminate a bunch of other support issues
add # fmt: skip in the places where versions of black differ (this does not appear to work)
My question for the maintainers; what do you suggest?
The text was updated successfully, but these errors were encountered:
I'm currently working on a draft PR to add type hint annotations and I noticed black installs an older version in python3.6 & python3.7. This is causing inconsistent results in tox due to changes in formatting between older and newer versions of black.
See: https://github.com/atlassian-api/atlassian-python-api/actions/runs/9490554332 for the results.
There are a couple of options I can see:
add(this does not appear to work)# fmt: skip
in the places where versions of black differMy question for the maintainers; what do you suggest?
The text was updated successfully, but these errors were encountered: