Skip to content
Open
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
145 changes: 111 additions & 34 deletions poetry.lock

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

3 changes: 2 additions & 1 deletion pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ load-plugins=pylint.extensions.docparams,pylint.extensions.docstyle,pylint.exten

# C0413 wrong-import-position: Import "%s" should be placed at the top of the module Used when code and imports are mixed
# C1801 len-as-condition: Do not use `len(SEQUENCE)` as condition value
# R0801 duplicate-code: Sync code is auto-generated from _async/ — duplication is by design
# R0913 too-many-arguments: Too many arguments for function / method
# R0917 too-many-positional-arguments: Too many positional arguments
# W0511 fixme: TODO statements
Expand All @@ -23,7 +24,7 @@ load-plugins=pylint.extensions.docparams,pylint.extensions.docstyle,pylint.exten
# W1202 logging-format-interpolation: Use % formatting in logging functions and pass the % parameters as arguments
# W1203 logging-fstring-interpolation: Use % formatting in logging functions and pass the % parameters as arguments
# W3101 missing-timeout: Missing timeout argument for method 'requests.*'
disable=C0413,C1801,R0913,R0917,W0511,W0703,W1201,W1202,W1203,W3101
disable=C0413,C1801,R0801,R0913,R0917,W0511,W0703,W1201,W1202,W1203,W3101


[REPORTS]
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ classifiers = [
[tool.poetry.dependencies]
python = "^3.10"
deserialize = "^2.2.0"
requests = "^2.31.0"
httpx = "^0.28.0"
tenacity = "^8.2.2"
azure-identity = "^1.25.1"

Expand All @@ -50,10 +50,10 @@ pytest-cov = "^7.0.0"
pytest-mock = "^3.11.1"
python-dotenv = "^1.1.1"
PyYAML = "^6.0.3"
responses = "^0.23.1"
respx = "^0.22.0"
toml = "^0.10.2"
types-PyYAML = "^6.0.12.11"
types-requests = "^2.31.0.2"
pytest-asyncio = "^0.25.0"
types-toml = "^0.10.8.7"

[tool.poetry.group.dev.dependencies]
Expand Down
Loading
Loading