Skip to content

Commit

Permalink
eval_type_backport only for storage
Browse files Browse the repository at this point in the history
  • Loading branch information
Koncopd committed Aug 22, 2024
1 parent 77eb072 commit 9ed84e2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ def install_ci(session, group):
)
run(session, "uv pip install --system vitessce")
run(session, "uv pip install --system tiledbsoma")
# otherwise test fail on python=3.9 due to pedantic probably
# You have a type annotation 'str | None' which makes use
# of newer typing features than are supported in your version of Python...
run(session, "uv pip install --system eval_type_backport")
elif group == "docs":
extras += "bionty"
run(session, "uv pip install --system mudata")
Expand All @@ -116,10 +120,6 @@ def install_ci(session, group):
"uv pip install --system --no-deps ./sub/bionty",
)
run(session, f"uv pip install --system -e .[dev,{extras}]")
# otherwise test fail on python=3.9 due to pedantic probably
# You have a type annotation 'str | None' which makes use
# of newer typing features than are supported in your version of Python...
run(session, "uv pip install --system eval_type_backport")


@nox.session
Expand Down

0 comments on commit 9ed84e2

Please sign in to comment.