-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from wvanhed/develop
v0.5.6 - fix oauth broken login
- Loading branch information
Showing
5 changed files
with
81 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "mijnbib" | ||
version = "0.5.5" | ||
version = "0.5.6" | ||
description = "Python API voor de website mijn.bibliotheek.be" | ||
readme = "README.md" | ||
authors = [{ name = "Ward Van Heddeghem", email = "[email protected]" }] | ||
|
@@ -38,7 +38,11 @@ line-length = 95 # same as Black | |
|
||
[tool.ruff.lint] | ||
extend-select = [ | ||
"W", # warning | ||
"B", # flake8-bugbear | ||
# "SIM", # flake8-simplify, for simplified code | ||
"W", # warning | ||
"B", # flake8-bugbear | ||
"SIM", # flake8-simplify, for simplified code | ||
] | ||
ignore = [ | ||
"SIM105", # suppressible-exception (contextlib usage) | ||
"SIM910", # dict-get-with-none-default | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters