-
Notifications
You must be signed in to change notification settings - Fork 94
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
Fix isort and black line length #350
Fix isort and black line length #350
Conversation
Run black again to make sure they agree.
a981294
to
a5baefe
Compare
This really weird. I'm not seeing this issue locally...
|
Changes here seem to be differing from other RAPIDS projects, e.g.:
Is that really what we want? |
Would suggest running dask-cuda/dask_cuda/local_cuda_cluster.py Lines 211 to 212 in 975461c
|
rerun tests |
Just to be clear, I tried both options (setting to |
Codecov Report
@@ Coverage Diff @@
## branch-0.15 #350 +/- ##
===============================================
- Coverage 60.30% 60.13% -0.17%
===============================================
Files 17 17
Lines 1320 1342 +22
===============================================
+ Hits 796 807 +11
- Misses 524 535 +11
Continue to review full report at Codecov.
|
TBH, it's still unclear to me what should be done here or why that's necessary. At least in its current state, this PR seems to be following a diverging path to that of other libraries, as per #350 (comment) . |
Do we still need this @jakirkham ? It seems like we rely on specific versions of formatting packages, it's not really clear to me what's the intent of this PR. |
It seems to me that formatting works properly provided we locally use the same versions as CI does (see https://github.com/rapidsai/integration/blob/branch-0.17/conda/recipes/versions.yaml for reference). Therefore, I'm tentatively closing this, please feel free to reopen if there's still something that needs to be done here @jakirkham . |
Mads fixed this issue in PR ( #477 ). |
Appears that isort and black (via flake8) had different line lengths, which clashed with each other resulting in the lint always failing. This makes sure isort uses the same line length that black (and flake8) use. Also reruns isort, black, and flake8 to make sure everything is copacetic.