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

chore: bump black from 23.3.0 to 24.3.0 #125

Merged
merged 2 commits into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions mabby/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* configure environments with custom arm spaces and rewards distributions
* collect and visualize simulation metrics like regret and optimality
"""

from mabby.agent import Agent
from mabby.arms import Arm, BernoulliArm, GaussianArm
from mabby.bandit import Bandit
Expand Down
1 change: 1 addition & 0 deletions mabby/stats.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Provides metric tracking for multi-armed bandit simulations."""

from __future__ import annotations

from collections.abc import Iterable
Expand Down
1 change: 1 addition & 0 deletions mabby/strategies/ucb.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Provides implementations of upper confidence bound (UCB) strategies."""

from __future__ import annotations

import numpy as np
Expand Down
1 change: 1 addition & 0 deletions mabby/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Provides commonly used utility functions."""

from __future__ import annotations

import numpy as np
Expand Down
57 changes: 27 additions & 30 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ overrides = "^7.3.1"

[tool.poetry.group.dev.dependencies]
pre-commit = "^3.0.4"
black = {extras = ["jupyter"], version = "^23.3.0"}
black = {extras = ["jupyter"], version = ">=23.3,<25.0"}
mdformat = "^0.7.16"
mdformat-black = "^0.1.1"
mdformat-mkdocs = {extras = ["recommended"], version = "^1.0.0"}
Expand Down
Loading