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

Fixed changelog and isort configuration #238

Merged
merged 3 commits into from
Dec 9, 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
18 changes: 15 additions & 3 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
# Changelog
# Changes

* [0.1.1](changes_0.1.1.md)
* [0.1.0](changes_0.1.0.md)
* [unreleased](unreleased.md)
* [0.2.0](changes_0.2.0.md)
* [0.1.0](changes_0.1.0.md)

<!--- This MyST Parser Sphinx directive is necessary to keep Sphinx happy. We need list here all release letters again, because release droid and other scripts assume Markdown --->
```{toctree}
---
hidden:
---
unreleased
changes_0.2.0
changes_0.1.0

```
17 changes: 17 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,20 @@ ignore_errors = true

[tool.pylint.master]
fail-under = 6.0



[tool.black]
line-length = 88
verbose = false
include = "\\.pyi?$"


[tool.isort]
profile = "black"
force_grid_wrap = 2
ckunki marked this conversation as resolved.
Show resolved Hide resolved


[tool.pylint.format]
max-line-length = 88
max-module-lines = 800
Loading