Skip to content

Commit 50ac071

Browse files
authored
Fix/ci director install (#5496)
1 parent f6336ef commit 50ac071

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

.github/workflows/ci-testing-deploy.yml

-7
Original file line numberDiff line numberDiff line change
@@ -793,13 +793,6 @@ jobs:
793793
uses: actions/setup-python@v5
794794
with:
795795
python-version: ${{ matrix.python }}
796-
- name: install uv
797-
uses: yezz123/setup-uv@v4
798-
- uses: actions/cache@v4
799-
id: cache-uv
800-
with:
801-
path: ~/.cache/uv
802-
key: ${{ runner.os }}-${{ github.job }}-python-${{ matrix.python }}-uv
803796
- name: show system version
804797
run: ./ci/helpers/show_system_versions.bash
805798
- name: install

ci/github/unit-testing/director.bash

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ install() {
2525
pushd services/director
2626
pip3 install -r requirements/ci.txt
2727
popd
28-
uv pip list
2928
}
3029

3130
test() {

services/director/src/simcore_service_director/utils.py

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
def parse_as_datetime(timestr: str, *, default: Optional[datetime] = None) -> datetime:
1212
"""
1313
default: if parsing is not possible, it returs default
14+
1415
"""
1516
# datetime_str is typically '2020-10-09T12:28:14.771034099Z'
1617
# - The T separates the date portion from the time-of-day portion

0 commit comments

Comments
 (0)