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

Fix typo... #163

Merged
merged 3 commits into from
Apr 18, 2024
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
@@ -1,13 +1,13 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.6.0
hooks:
- id: check-ast
- id: debug-statements
- id: check-added-large-files

- repo: https://github.com/codespell-project/codespell
rev: v2.2.5
rev: v2.2.6
hooks:
- id: codespell
exclude: >
Expand All @@ -20,13 +20,13 @@ repos:
- --ignore-words-list=nin,preformed,wih,

- repo: https://github.com/tox-dev/pyproject-fmt
rev: 0.13.0
rev: 1.8.0
hooks:
- id: pyproject-fmt


- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.0.283
rev: v0.3.7
hooks:
- id: ruff

Expand Down
2 changes: 1 addition & 1 deletion gsw/tests/gsw_check_functions_save.m
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
gsw_ver

fprintf(1,' \n');
fprintf(1,'If you have any questions reguarding this software email [email protected]\n');
fprintf(1,'If you have any questions regarding this software email [email protected]\n');
fprintf(1,' \n');
fprintf(1,'This function is running three stored vertical profiles through\n');
fprintf(1,'all the functions in the GSW Oceanographic Toolbox, and then checks\n');
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
dynamic = [
Expand Down
Loading