Skip to content

Commit

Permalink
Bump docformatter from 1.4 to 1.7.5 (#64)
Browse files Browse the repository at this point in the history
* Bump docformatter from 1.4 to 1.7.5

Bumps [docformatter](https://github.com/PyCQA/docformatter) from 1.4 to 1.7.5.
- [Release notes](https://github.com/PyCQA/docformatter/releases)
- [Changelog](https://github.com/PyCQA/docformatter/blob/master/CHANGELOG.md)
- [Commits](PyCQA/docformatter@v1.4...v1.7.5)

---
updated-dependencies:
- dependency-name: docformatter
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix docformatter setup

* Fix lock file

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Olaf Schüsler <[email protected]>
  • Loading branch information
dependabot[bot] and oschusler authored Aug 21, 2023
1 parent 1a87e90 commit 0240b72
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Test sorting
run: poetry run isort --check .
- name: Test docstring formatting
run: poetry run docformatter --check --recursive --wrap-summaries=119 --wrap-descriptions=119 .
run: poetry run docformatter --check .
- name: Static code analysis
run: poetry run mypy .
- name: Run pylint
Expand Down
17 changes: 11 additions & 6 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pytest-cov = "^4.1.0"
pylint = "^2.17.5"
coverage = {extras = ["toml"], version = "^7.3.0"}
mypy = "^1.5"
docformatter = "1.4"
docformatter = "1.7.5"
pytest-mock = "^3.11.1"
isort = "^5.11.4"
black = "^23.7.0"
Expand Down Expand Up @@ -96,5 +96,10 @@ max-line-length = 120
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.docformatter]
recursive = true
wrap-summaries = 119
wrap-descriptions = 119

[tool.pydantic-mypy]
warn_untyped_fields = true
1 change: 0 additions & 1 deletion quantuminspire/util/api/base_runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the
License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
Expand Down
1 change: 0 additions & 1 deletion quantuminspire/util/api/remote_runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the
License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
Expand Down

0 comments on commit 0240b72

Please sign in to comment.