Skip to content

Commit b5f4a75

Browse files
committed
nit: bump up min python to 3.11
Signed-off-by: Mehant Kammakomati <mehant.kammakomati2@ibm.com>
1 parent 375af89 commit b5f4a75

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
strategy:
99
matrix:
1010
python-version:
11-
- setup: "3.10"
12-
tox: "py310"
11+
- setup: "3.11"
12+
tox: "py311"
1313
plugin_name:
1414
- "framework"
1515
- "accelerated-peft"

.github/workflows/format.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535

3636
steps:
3737
- uses: actions/checkout@v4
38-
- name: Set up Python 3.9
38+
- name: Set up Python 3.11
3939
uses: actions/setup-python@v4
4040
with:
41-
python-version: 3.9
41+
python-version: 3.11
4242
- name: Install dependencies
4343
run: |
4444
python -m pip install --upgrade pip
@@ -61,10 +61,10 @@ jobs:
6161

6262
steps:
6363
- uses: actions/checkout@v4
64-
- name: Set up Python 3.9
64+
- name: Set up Python 3.11
6565
uses: actions/setup-python@v4
6666
with:
67-
python-version: 3.9
67+
python-version: 3.11
6868
- name: Install dependencies
6969
run: |
7070
python -m pip install --upgrade pip

plugins/online-data-mixing/.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ persistent=yes
8888

8989
# Minimum Python version to use for version dependent checks. Will default to
9090
# the version used to run pylint.
91-
py-version=3.9
91+
py-version=3.11
9292

9393
# Discover python modules and packages in the file system subtree.
9494
recursive=no

plugins/online-data-mixing/pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ classifiers=[
2424
"Programming Language :: Python :: 3.11",
2525
]
2626

27+
dependencies = ["datasets"]
28+
2729
[tool.hatch.build.targets.wheel]
2830
only-include = ["src/fms_acceleration_odm"]
2931

0 commit comments

Comments
 (0)