Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: kalyanr <kalyan.ben10@live.com>
  • Loading branch information
rawwar committed Jan 6, 2024
1 parent ac4a8cc commit 3b94be3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def lint(session):


@nox.session(python=["3.8", "3.9", "3.10"])
def test(session, pandas_version: str):
def test(session):
session.install(
"-r",
"requirements-dev.txt",
Expand Down Expand Up @@ -138,7 +138,7 @@ def test(session, pandas_version: str):


@nox.session(python=["3.9"])
def docs(session, pandas_version: str):
def docs(session):
# Run this so users get an error if they don't have Pandoc installed.
session.install("-r", "docs/requirements-docs.txt")
session.install(".")
Expand All @@ -152,7 +152,7 @@ def docs(session, pandas_version: str):
# to automate the action workflow, leveraging its ability to set up the environment
# required for model autotracing.
@nox.session(python=["3.9"])
def trace(session, pandas_version: str):
def trace(session):
session.install(
"-r",
"requirements-dev.txt",
Expand Down

0 comments on commit 3b94be3

Please sign in to comment.