Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependabot merge #354

Merged
merged 10 commits into from
Aug 6, 2024
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def tests(session):
session.install("-r", req_path)

# run tests
session.run("pytest", "-s", "tests", "--api=http://127.0.0.1:8000",
session.run("pytest", "tests", "--api=http://127.0.0.1:8000",
"--cov=modeltestsdk", "--cov-report=term-missing", "--cov-fail-under=95")


Expand All @@ -70,5 +70,5 @@ def tests_github(session):
session.install("-r", req_path)

# run tests
session.run("pytest", "-s", "tests", "--api=build",
session.run("pytest", "tests", "--api=build",
"--cov=modeltestsdk", "--cov-report=term-missing", "--cov-fail-under=95")
91 changes: 25 additions & 66 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ include = [
]

[tool.poetry.dependencies]
matplotlib = "^3.7.4"
matplotlib = "^3.7.5"
requests="2.32.3"
python = ">=3.8.0,<3.11"
pydantic = "^1.10.12,<2"
Expand All @@ -21,7 +21,7 @@ qats = "^4.12.1"
pandas = ">=1,<2"

[tool.poetry.group.dev.dependencies]
bandit = "^1.7.6"
bandit = "^1.7.9"
pytest = "^7.4.4"
nox = "^2023.4.22"
scipy="^1.10.1"
Expand Down
Loading