-
Notifications
You must be signed in to change notification settings - Fork 5k
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
Clean up pre-commit #6349
Clean up pre-commit #6349
Conversation
blink1073
commented
Apr 8, 2022
- Move some checks to CI-only
- Update docs
- Add doc8 check
app/package.json
Outdated
"@jupyterlab/user": "~4.0.0-alpha.8", | ||
"@jupyterlab/user-extension": "~4.0.0-alpha.8", | ||
"@jupyterlab/vega5-extension": "~4.0.0-alpha.8", | ||
"@jupyterlab/application": "~4.0.0-alpha.7", |
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 these changes were unintentional?
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.
They came from the integrity check that ran on push
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.
Right the check is pretty simple for now and picks the versions of the locally installed packages (need to fix that so it's a bit smarter).
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.
Gotcha, reverted after a git clean.
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.
Thanks!
@@ -29,7 +29,5 @@ timeout = 300 | |||
# timeout_method = "thread" | |||
filterwarnings = [ | |||
"error", | |||
# Pending release of https://github.com/jupyterlab/jupyterlab_server/pull/259 | |||
"ignore:metadata:DeprecationWarning", |
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 we still need that jupyterlab_server
release (2.12.1 or 2.13?) before being able to remove it.
Noticed in #6369.
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.
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.
Thanks!