Skip to content

Commit 3ac11f5

Browse files
authored
Merge branch 'main' into dependabot/pip/simpleeval-gte-0.9.13-and-lt-2.0
2 parents a22f209 + fb3ace8 commit 3ac11f5

File tree

110 files changed

+297873
-1280
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+297873
-1280
lines changed

.github/workflows/build-and-publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
strategy:
2525
matrix:
2626
python-version:
27-
- setup: "3.11"
28-
tox: "py311"
27+
- setup: "3.12"
28+
tox: "py312"
2929

3030
environment:
3131
name: pypi

.github/workflows/coverage.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v4
13-
- name: Set up Python 3.11
13+
- name: Set up Python 3.12
1414
uses: actions/setup-python@v4
1515
with:
16-
python-version: 3.11
16+
python-version: 3.12
1717
- name: Install dependencies
1818
run: |
1919
python -m pip install --upgrade pip

.github/workflows/format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- uses: actions/checkout@v4
28-
- name: Set up Python 3.9
28+
- name: Set up Python 3.12
2929
uses: actions/setup-python@v4
3030
with:
31-
python-version: 3.9
31+
python-version: 3.12
3232
- name: Install dependencies
3333
run: |
3434
python -m pip install --upgrade pip

.github/workflows/image.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ jobs:
1515
sudo swapoff -a
1616
sudo rm -f /swapfile
1717
sudo apt clean
18-
docker rmi $(docker image ls -aq)
18+
if [ "$(docker image ls -q)" ]; then docker rmi $(docker image ls -aq); fi
1919
df -h
2020
- name: Build image
2121
run: |
2222
docker build -t fms-hf-tuning:dev . -f build/Dockerfile
23-

.github/workflows/test.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
tox: "py310"
1818
- setup: "3.11"
1919
tox: "py311"
20+
- setup: "3.12"
21+
tox: "py312"
2022
steps:
2123
- uses: actions/checkout@v4
2224
- name: Install dependencies

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ venv/
3232
# Aim
3333
.aim
3434

35+
# Mlflow
36+
mlruns/
37+
3538
# Backup files and folders
3639
*.bkp
3740
*.bkp.*

.pylintrc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -280,8 +280,8 @@ ignored-parents=
280280
# Maximum number of arguments for function / method.
281281
max-args=5
282282

283-
# Maximum number of attributes for a class (see R0902).
284-
max-attributes=7
283+
# Maximum number of attributes for a class (custom).
284+
max-attributes=10
285285

286286
# Maximum number of boolean expressions in an if statement (see R0916).
287287
max-bool-expr=5
@@ -638,7 +638,7 @@ callbacks=cb_,
638638
dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_
639639

640640
# Argument names that match this expression will be ignored.
641-
ignored-argument-names=_.*|^ignored_|^unused_
641+
ignored-argument-names=_.*|^ignored_|^unused_|kwargs
642642

643643
# Tells whether we should check for unused import in __init__ files.
644644
init-import=no

README.md

Lines changed: 152 additions & 20 deletions
Large diffs are not rendered by default.

architecture_records/003-generic-tracker-framework.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Resource Scanner
1+
# Generic Tracker Framework
22

33
**Deciders(s)**: Sukriti Sharma (sukriti.sharma4@ibm.com), Alexander Brooks (alex.brooks@ibm.com), Raghu Ganti (rganti@us.ibm.com), Dushyant Behl (dushyantbehl@in.ibm.com), Ashok Pon Kumar (ashokponkumar@in.ibm.com)
44

architecture_records/004-datapreprocessor.md

Lines changed: 422 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)