Skip to content

Commit

Permalink
Merge pull request #4 from tkbaca/main
Browse files Browse the repository at this point in the history
Updating version for mkdocs to fix failing test (#1)
  • Loading branch information
AntonDeMeester authored Oct 12, 2023
2 parents b3308d7 + 81aeabe commit f926d9d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,21 @@ classifiers = [

[tool.poetry.dependencies]
python = "^3.7"
SQLAlchemy = ">=2.0.0,<=2.0.11"
pydantic = { version = ">=2.1.1,<=2.4", extras = ["email"] }
SQLAlchemy = ">=2.0.0,<=2.0.21"
pydantic = { version = ">=2.1.1,<=2.4.2", extras = ["email"] }

[tool.poetry.dev-dependencies]
pytest = "^7.0.1"
mypy = "0.971"
flake8 = "^5.0.4"
flake8 = [{ version = ">=5.0.4, <6.0.0", python = "<3.8.1" }, { version = ">=6.1.0", python = ">=3.8.1"}]
black = "^22.10.0"
mkdocs = "^1.2.1"
mkdocs-material = "^8.1.4"
mkdocs = [{ version = "<=1.2.4", python = "<3.8.1" }, { version = ">=1.5.3", python = ">=3.8.1"} ]
mkdocs-material = [{ version = "<=8.2.7", python = "<3.8.1" }, { version = ">=9.4.5", python = ">=3.8.1"}]
pillow = "^9.3.0"
cairosvg = "^2.5.2"
mdx-include = "^1.4.1"
coverage = {extras = ["toml"], version = "^6.2"}
fastapi = "^0.100.0"
fastapi = "^0.103.2"
requests = "^2.26.0"
autoflake = "^1.4"
isort = "^5.9.3"
Expand Down
2 changes: 1 addition & 1 deletion sqlmodel/orm/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def get(
ident: Any,
options: Optional[Sequence[Any]] = None,
populate_existing: bool = False,
with_for_update: Optional[_ForUpdateArg] = None,
with_for_update: Union[_ForUpdateArg, None, bool, Dict[str, Any]] = None,
identity_token: Optional[Any] = None,
execution_options: Mapping[Any, Any] = util.EMPTY_DICT,
bind_arguments: Optional[Dict[str, Any]] = None,
Expand Down

0 comments on commit f926d9d

Please sign in to comment.