Skip to content

Commit

Permalink
Merge pull request ModOrganizer2#118 from ZashIn/fix/python11_deps_li…
Browse files Browse the repository at this point in the history
…nters

Fix python11 deps + linters
  • Loading branch information
Holt59 committed Sep 26, 2023
2 parents 0c15b51 + 3749d18 commit 2802df3
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 38 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.mypy_cache
__pycache__
.venv
.tox
.vscode
.idea
Expand Down
50 changes: 18 additions & 32 deletions poetry.lock

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

9 changes: 3 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ readme = "README.md"

[tool.poetry.dependencies]
python = "^3.11"
psutil = "5.8.0"
psutil = "^5.9"
vdf = "3.4"
lzokay = "1.1.5"

Expand Down Expand Up @@ -53,13 +53,10 @@ lint-all.ignore_fail = "return_non_zero"
max-line-length = 88
extend-ignore = ["E203"]

[tool.black]
exclude = "lib"

[tool.isort]
profile = "black"
multi_line_output = 3
skip = "lib"
skip_gitignore = true

[tool.mypy]
warn_return_any = true
Expand All @@ -81,7 +78,7 @@ line-length = 88
target-version = "py311"

[tool.pyright]
exclude = ["lib"]
exclude = ["lib", "**/.*"]
typeCheckingMode = "strict"
pythonPlatform = "Windows"
reportMissingModuleSource = false

0 comments on commit 2802df3

Please sign in to comment.