Skip to content

Commit 5f1bdbf

Browse files
Upgrade python and packages
1 parent fde90fc commit 5f1bdbf

File tree

4 files changed

+22
-39
lines changed

4 files changed

+22
-39
lines changed

.env.example

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ CLEARML_API_HOST=<your-clearml-api-host>
44
CLEARML_FILES_HOST=<your-clearml-files-host>
55
CLEARML_API_ACCESS_KEY=<your-clearml-api-access-key>
66
CLEARML_API_SECRET_KEY=<your-clearml-api-secret-key>
7-
CLEARML_AGENT_GIT_USER=<your-github-username>
8-
CLEARML_AGENT_GIT_PASS=<your-github-password>
97
AWS_ACCESS_KEY_ID=<your-aws-access-key>
108
AWS_SECRET_ACCESS_KEY=<your-aws-secret-access-key>
119
AWS_DEFAULT_REGION=<your-aws-default-region>

.github/workflows/workflow.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.10", "3.11"]
11+
python-version: ["3.11", "3.12", "3.13"]
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v4
16+
uses: actions/setup-python@v5
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919
cache: "pip"

clearml.conf

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -223,17 +223,3 @@ sdk {
223223
}
224224
}
225225
}
226-
agent {
227-
# Set GIT user/pass credentials (if user/pass are set, GIT protocol will be set to https)
228-
git_user=${CLEARML_AGENT_GIT_USER}
229-
git_pass=${CLEARML_AGENT_GIT_PASS}
230-
# all other domains will use public access (no user/pass). Default: always send user/pass for any VCS domain
231-
git_host=""
232-
233-
# Force GIT protocol to use SSH regardless of the git url (Assumes GIT user/pass are blank)
234-
force_git_ssh_protocol: false
235-
236-
# unique name of this worker, if None, created based on hostname:process_id
237-
# Overridden with os environment: CLEARML_WORKER_NAME
238-
worker_id: ""
239-
}

requirements.txt

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,34 @@
11
# --------------- core --------------- #
2-
numpy==2.2.2
2+
numpy==2.2.6
33
pandas==2.2.3
4-
pyarrow==19.0.0
4+
pyarrow==20.0.0
55
hydra-core==1.3.2
6-
torch==2.6.0
7-
lightning==2.5.0.post0
8-
torchmetrics==1.6.1
9-
clearml==1.17.1
10-
clearml-agent==1.9.3
11-
optuna==4.2.1
12-
flask==3.1.0
6+
torch==2.7.0
7+
lightning==2.5.1.post0
8+
torchmetrics==1.7.1
9+
clearml==2.0.0
10+
optuna==4.3.0
11+
flask==3.1.1
1312

1413
# -------------- extras -------------- #
15-
notebook==7.3.2
14+
notebook==7.4.2
1615
scikit-learn==1.6.1
17-
matplotlib==3.10.0
16+
matplotlib==3.10.3
1817
tensorboardX==2.6.2.2
19-
rich==13.9.4
18+
rich==14.0.0
2019
s3fs==0.4.2
21-
boto3==1.26.125
22-
python-dotenv==1.0.1
23-
pre-commit==4.1.0
20+
boto3==1.38.23
21+
python-dotenv==1.1.0
22+
pre-commit==4.2.0
2423
torchinfo==1.8.0
2524

2625
# ------------- styling -------------- #
27-
flake8==7.1.1
26+
flake8==7.2.0
2827
flake8-pyproject==1.2.3
2928
black==25.1.0
30-
isort==6.0.0
31-
pyupgrade==3.19.1
29+
isort==6.0.1
30+
pyupgrade==3.20.0
3231

3332
# --------------- tests -------------- #
34-
pytest==8.3.4
35-
pytest-cov==6.0.0
33+
pytest==8.3.5
34+
pytest-cov==6.1.1

0 commit comments

Comments
 (0)