Skip to content
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

[pre-commit.ci] pre-commit autoupdate #2047

Merged
merged 3 commits into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ repos:
exclude: "^src/_nebari/template/"

- repo: https://github.com/codespell-project/codespell
rev: v2.2.5
rev: v2.2.6
hooks:
- id: codespell
args:
Expand All @@ -53,13 +53,13 @@ repos:

# python
- repo: https://github.com/psf/black
rev: 23.7.0
rev: 23.9.1
hooks:
- id: black
args: ["--line-length=88", "--exclude=/src/_nebari/template/"]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.0.287
rev: v0.0.292
hooks:
- id: ruff
args: ["--fix"]
Expand All @@ -75,7 +75,7 @@ repos:

# terraform
- repo: https://github.com/antonbabenko/pre-commit-terraform
rev: v1.83.2
rev: v1.83.4
hooks:
- id: terraform_fmt
args:
Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ Enhancements for this release include:

### Bug fixes

This release addresses several bugs with a slight emphasis on stablizing the core services while also improving the end user experience.
This release addresses several bugs with a slight emphasis on stabilizing the core services while also improving the end user experience.

### What's Changed
* [BUG] Adding back feature of limiting profiles for users and groups by @costrouc in [PR 1169](https://github.com/Quansight/qhub/pull/1169)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ resource "kubernetes_deployment" "worker" {
}

annotations = {
# This lets us autorestart when the conifg changes!
# This lets us autorestart when the config changes!
"checksum/config-map" = sha256(jsonencode(kubernetes_config_map.conda-store-config.data))
"checksum/secret" = sha256(jsonencode(kubernetes_secret.conda-store-secret.data))
"checksum/conda-environments" = sha256(jsonencode(kubernetes_config_map.conda-store-environments.data))
Expand Down
2 changes: 1 addition & 1 deletion src/nebari/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def _import_module_from_filename(plugin: str):
try:
self.plugin_manager.register(mod, plugin)
except ValueError:
# Pluin already registered
# Plugin already registered
pass

def get_available_stages(self):
Expand Down
Loading