Skip to content

Commit f926d9d

Browse files
Merge pull request #4 from tkbaca/main
Updating version for mkdocs to fix failing test (#1)
2 parents b3308d7 + 81aeabe commit f926d9d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,21 @@ classifiers = [
3232

3333
[tool.poetry.dependencies]
3434
python = "^3.7"
35-
SQLAlchemy = ">=2.0.0,<=2.0.11"
36-
pydantic = { version = ">=2.1.1,<=2.4", extras = ["email"] }
35+
SQLAlchemy = ">=2.0.0,<=2.0.21"
36+
pydantic = { version = ">=2.1.1,<=2.4.2", extras = ["email"] }
3737

3838
[tool.poetry.dev-dependencies]
3939
pytest = "^7.0.1"
4040
mypy = "0.971"
41-
flake8 = "^5.0.4"
41+
flake8 = [{ version = ">=5.0.4, <6.0.0", python = "<3.8.1" }, { version = ">=6.1.0", python = ">=3.8.1"}]
4242
black = "^22.10.0"
43-
mkdocs = "^1.2.1"
44-
mkdocs-material = "^8.1.4"
43+
mkdocs = [{ version = "<=1.2.4", python = "<3.8.1" }, { version = ">=1.5.3", python = ">=3.8.1"} ]
44+
mkdocs-material = [{ version = "<=8.2.7", python = "<3.8.1" }, { version = ">=9.4.5", python = ">=3.8.1"}]
4545
pillow = "^9.3.0"
4646
cairosvg = "^2.5.2"
4747
mdx-include = "^1.4.1"
4848
coverage = {extras = ["toml"], version = "^6.2"}
49-
fastapi = "^0.100.0"
49+
fastapi = "^0.103.2"
5050
requests = "^2.26.0"
5151
autoflake = "^1.4"
5252
isort = "^5.9.3"

sqlmodel/orm/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def get(
8585
ident: Any,
8686
options: Optional[Sequence[Any]] = None,
8787
populate_existing: bool = False,
88-
with_for_update: Optional[_ForUpdateArg] = None,
88+
with_for_update: Union[_ForUpdateArg, None, bool, Dict[str, Any]] = None,
8989
identity_token: Optional[Any] = None,
9090
execution_options: Mapping[Any, Any] = util.EMPTY_DICT,
9191
bind_arguments: Optional[Dict[str, Any]] = None,

0 commit comments

Comments
 (0)