Skip to content

Commit

Permalink
Fix tests for py 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
bergercookie committed Aug 10, 2024
1 parent 3c3717b commit c2a5ce9
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 10 deletions.
13 changes: 12 additions & 1 deletion poetry.lock

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

17 changes: 8 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,7 @@ bubop = { version = "0.1.12", allow-prereleases = true }
setuptools = { version = "^72.1.0", optional = true, python = ">=3.12" }

[tool.poetry.extras]
google = [
"google-api-python-client",
"google-auth-oauthlib",
"setuptools",
]
google = ["google-api-python-client", "google-auth-oauthlib", "setuptools"]
gkeep = ["gkeepapi"]
notion = ["notion-client"]
asana = ["asana"]
Expand All @@ -99,7 +95,10 @@ mock = "*"
mypy = "*"
pdbpp = "^0.10.3"
pre-commit = "^2.21.0"
pyfakefs = "^4.7.0"
pyfakefs = [
{ version = "^4.7.0", python = "<3.12" },
{ version = "^5.4", python = ">3.12" },
]
pylint = "^2.17.7"
pyright = "*"
pytest = "*"
Expand Down Expand Up @@ -185,13 +184,13 @@ line-length = 95
target-version = "py310"
force-exclude = true

exclude = [ ]
exclude = []

[tool.ruff.lint]

select = ["ALL"]
ignore = [ ]
exclude = [ ]
ignore = []
exclude = []

[tool.ruff.lint.flake8-annotations]
# No need for -> None in __init__ methods
Expand Down

0 comments on commit c2a5ce9

Please sign in to comment.