Skip to content
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 @@ -43,7 +43,7 @@ repos:
# More information can be found in its source repository:
# https://github.com/DavidAnson/markdownlint-cli2
- repo: https://github.com/DavidAnson/markdownlint-cli2
rev: v0.18.1
rev: v0.19.0
hooks:
- id: markdownlint-cli2
name: markdownlint
Expand All @@ -54,7 +54,7 @@ repos:
# Pyupgrade is a code upgrade tool
# It works on files in-place
- repo: https://github.com/asottile/pyupgrade
rev: v3.21.1
rev: v3.21.2
hooks:
- id: pyupgrade
args: [--py310-plus]
Expand All @@ -81,7 +81,7 @@ repos:
# More information can be found in its documentation:
# https://docs.astral.sh/ruff/
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.4
rev: v0.14.5
hooks:
- id: ruff-check
name: ruff
Expand All @@ -92,7 +92,7 @@ repos:
# More information can be found in its documentation:
# https://bandit.readthedocs.io/en/latest/
- repo: https://github.com/PyCQA/bandit
rev: 1.8.6
rev: 1.9.1
hooks:
- id: bandit
args: ["-r"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ The list of input keys and default values can be found in [`cookiecutter.json`](
An overview is also provided in the following table:

| Input key | Description | Default value |
|:---:|:--- |:--- |
| :---: | :--- | :--- |
| `project_name` | A human-readable name of the project. | `OTEAPI My Plugin` |
| `project_slug` | The official package name to be used when installing the package via a package manager (e.g., `pip` or `conda`).<br>This will be the root directory name and should also be the repository name on an online git repository (like GitHub or GitLab).<br><br>It is recommended to have the project slug start with `oteapi-`.<br><br>**Important**: A project slug value may *not* include white space. | `oteapi-myplugin` |
| `package_name` | The Python importable root module.<br>This will be the root module repository name, under which the source code will be placed.<br><br>It is recommended to have the package name start with `oteapi_`.<br><br>**Important**: A package name value may *not* include white space. A package name value may *only* be made up of the character set: a-z, A-Z, `_`, 0-9, and may *not* start with a number. | `oteapi_myplugin` |
Expand Down
8 changes: 4 additions & 4 deletions {{ cookiecutter.project_slug }}/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ repos:
# More information can be found in its source repository:
# https://github.com/DavidAnson/markdownlint-cli2
- repo: https://github.com/DavidAnson/markdownlint-cli2
rev: v0.18.1
rev: v0.19.0
hooks:
- id: markdownlint-cli2
name: markdownlint
Expand All @@ -60,7 +60,7 @@ repos:
# Pyupgrade is a code upgrade tool
# It works on files in-place
- repo: https://github.com/asottile/pyupgrade
rev: v3.21.1
rev: v3.21.2
hooks:
- id: pyupgrade
args: [--py310-plus]
Expand All @@ -84,7 +84,7 @@ repos:
# More information can be found in its documentation:
# https://docs.astral.sh/ruff/
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.4
rev: v0.14.5
hooks:
- id: ruff-check
name: ruff
Expand All @@ -94,7 +94,7 @@ repos:
# More information can be found in its documentation:
# https://bandit.readthedocs.io/en/latest/
- repo: https://github.com/PyCQA/bandit
rev: 1.8.6
rev: 1.9.1
hooks:
- id: bandit
args: ["-r"]
Expand Down