Skip to content

Commit

Permalink
Merge branch 'schema-updates' into add-trial-runner-id-column
Browse files Browse the repository at this point in the history
  • Loading branch information
bpkroth committed Jan 4, 2025
2 parents 4e99658 + 908b5db commit b6c867c
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 3 deletions.
1 change: 1 addition & 0 deletions conda-envs/mlos-3.10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ dependencies:
- pre-commit==4.0.1
- pycodestyle==2.12.1
- pylint==3.3.3
- tomlkit
- mypy==1.14.1
- pandas-stubs
- types-beautifulsoup4
Expand Down
1 change: 1 addition & 0 deletions conda-envs/mlos-3.11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ dependencies:
- pre-commit==4.0.1
- pycodestyle==2.12.1
- pylint==3.3.3
- tomlkit
- mypy==1.14.1
- pandas-stubs
- types-beautifulsoup4
Expand Down
1 change: 1 addition & 0 deletions conda-envs/mlos-3.12.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ dependencies:
- pre-commit==4.0.1
- pycodestyle==2.12.1
- pylint==3.3.3
- tomlkit
- mypy==1.14.1
- pandas-stubs
- types-beautifulsoup4
Expand Down
1 change: 1 addition & 0 deletions conda-envs/mlos-3.13.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ dependencies:
- pre-commit==4.0.1
- pycodestyle==2.12.1
- pylint==3.3.3
- tomlkit
- mypy==1.14.1
- pandas-stubs
- types-beautifulsoup4
Expand Down
1 change: 1 addition & 0 deletions conda-envs/mlos-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ dependencies:
- pre-commit==4.0.1
- pycodestyle==2.12.1
- pylint==3.3.3
- tomlkit
- mypy==1.14.1
- pandas-stubs
- types-beautifulsoup4
Expand Down
1 change: 1 addition & 0 deletions conda-envs/mlos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ dependencies:
- pre-commit==4.0.1
- pycodestyle==2.12.1
- pylint==3.3.3
- tomlkit
- mypy==1.14.1
- pandas-stubs
- types-beautifulsoup4
Expand Down
5 changes: 4 additions & 1 deletion mlos_bench/mlos_bench/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,10 @@ def add_argument(self, *args: Any, **kwargs: Any) -> None:
default=False,
dest="create_update_storage_schema_only",
action="store_true",
help="Makes sure that the storage schema is update to date for the current version of mlos_bench.",
help=(
"Makes sure that the storage schema is up to date "
"for the current version of mlos_bench."
),
)

# By default we use the command line arguments, but allow the caller to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"""
from collections.abc import Sequence

import sqlalchemy as sa
from alembic import op
# import sqlalchemy as sa
# from alembic import op

# revision identifiers, used by Alembic.
revision: str = "d2a708351ba8"
Expand Down

0 comments on commit b6c867c

Please sign in to comment.