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

docs: fix typos with codespell #31

Merged
merged 1 commit into from
May 10, 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
6 changes: 3 additions & 3 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

## V1.5.0

* when using CaPyCLI in a CI pipeline, connection problems to teh SW360 server (5xx) cause
* when using CaPyCLI in a CI pipeline, connection problems to the SW360 server (5xx) cause
the pipeline to fail. We have now add an improved session handling to all api requests.
* dependency updates due to security vulnerabilities in idna.

Expand Down Expand Up @@ -98,7 +98,7 @@
* get_project_vulnerabilities() added.
* SW360Error has new property `details`.
* **Improvements**:
* Debug option to supress session handling.
* Debug option to suppress session handling.
* unit tests added.
* published on GitHub.

Expand Down Expand Up @@ -132,7 +132,7 @@
* get_users_of_component
* get_users_of_release
* upload_attachment() has been tested with different file types
and different attchment types.
and different attachment types.

## V0.3 (2019-09-24)

Expand Down
5 changes: 4 additions & 1 deletion RunChecks.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# SPDX-License-Identifier: MIT
# ---------------------------------------------

# 2023-12-25, T. Graf
# 2024-05-10, T. Graf

Write-Host "flake8 ..."
poetry run flake8
Expand All @@ -19,6 +19,9 @@ poetry run isort .
Write-Host "mypy ..."
poetry run mypy .

Write-Host "codespell ..."
poetry run codespell .

Write-Host "done."


Expand Down
Loading
Loading