Skip to content

Commit

Permalink
Merge branch 'dev' into abyrne-refactor-client
Browse files Browse the repository at this point in the history
  • Loading branch information
lbarbMITRE authored Jul 20, 2023
2 parents ee331c7 + 81335b5 commit 3f585e7
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
- uses: actions/checkout@v3

- name: setup python 3.9
uses: actions/setup-python@v4.6.1
uses: actions/setup-python@v4.7.0
with:
python-version: "3.9"

Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
- uses: actions/checkout@v3

- name: setup python 3.9
uses: actions/setup-python@v4.6.1
uses: actions/setup-python@v4.7.0
with:
python-version: "3.9"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pip-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- uses: actions/checkout@v3

- name: setup python ${{ matrix.python-version }}
uses: actions/setup-python@v4.5.0
uses: actions/setup-python@v4.7.0
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
- uses: actions/checkout@v3

- name: setup python ${{ matrix.python-version }}
uses: actions/setup-python@v4.5.0
uses: actions/setup-python@v4.7.0
with:
python-version: ${{ matrix.python-version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sphinx-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v3

- name: setup python 3.9
uses: actions/setup-python@v4.6.1
uses: actions/setup-python@v4.7.0
with:
python-version: "3.9"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tox-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- uses: actions/checkout@v3

- name: setup python ${{ matrix.python-version }}
uses: actions/setup-python@v4.5.0
uses: actions/setup-python@v4.7.0
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
run: sudo apt install -y wamerican

- name: setup python ${{ matrix.python-version }}
uses: actions/setup-python@v4.6.1
uses: actions/setup-python@v4.7.0
with:
python-version: ${{ matrix.python-version }}

Expand Down
2 changes: 1 addition & 1 deletion examples/scripts/register_task_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ def upload_custom_plugin_package(
Raises:
RuntimeError: If the custom task plugin package fails to upload.
"""

response = client.custom_task_plugins.upload(
custom_plugin_name=custom_plugin["name"],
custom_plugin_file=custom_plugin["path"],
Expand Down Expand Up @@ -194,7 +195,6 @@ def register_task_plugins(plugins_dir, api_url, force):
"Failed to register the custom task plugin "
f"{custom_plugin['name']!r}. Is the API URL correct?"
)

console.print_success(
"[bold green]Success![/] [default not bold]Registered the custom "
f"task plugin {custom_plugin['name']!r}.[/]"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,6 @@
" entry_point_kwargs=\" \".join(\n",
" [\n",
" \"-P batch_size=20\",\n",
" \"-P load_dataset_from_mlruns=true\",\n",
" \"-P spatial_smoothing_window_size=2\",\n",
" f\"-P dataset_run_id={response_deploy_le_net_patches_mnist_testing['mlflowRunId']}\",\n",
" ]\n",
Expand Down Expand Up @@ -676,7 +675,6 @@
" entry_point_kwargs=\" \".join(\n",
" [\n",
" \"-P batch_size=20\",\n",
" \"-P load_dataset_from_mlruns=true\",\n",
" f\"-P dataset_run_id={response_deploy_le_net_patches_mnist_testing['mlflowRunId']}\",\n",
" \"-P jpeg_compression_quality=30\",\n",
" ]\n",
Expand Down Expand Up @@ -753,7 +751,6 @@
" entry_point_kwargs=\" \".join(\n",
" [\n",
" \"-P batch_size=20\",\n",
" \"-P load_dataset_from_mlruns=true\",\n",
" f\"-P dataset_run_id={response_deploy_le_net_patches_mnist_testing['mlflowRunId']}\",\n",
" \"-P gaussian_augmentation_sigma=0.3\",\n",
" ]\n",
Expand Down

0 comments on commit 3f585e7

Please sign in to comment.