Skip to content

Commit 2052af7

Browse files
committed
retain support for python 3.9-3.12
Signed-off-by: Anh Uong <[email protected]>
1 parent 39dc6cf commit 2052af7

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

.github/workflows/test.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ jobs:
1111
strategy:
1212
matrix:
1313
python-version:
14+
- setup: "3.9"
15+
tox: "py39"
16+
- setup: "3.10"
17+
tox: "py310"
18+
- setup: "3.11"
19+
tox: "py311"
1420
- setup: "3.12"
1521
tox: "py312"
1622
steps:

build/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ARG PYTHON_VERSION
3232
ARG USER
3333
ARG USER_UID
3434

35-
# Note this is tested to be working for version 3.12
35+
# Note this is tested to be working for version 3.9, 3.11, 3.12
3636
RUN dnf remove -y --disableplugin=subscription-manager \
3737
subscription-manager \
3838
&& dnf install -y python${PYTHON_VERSION} procps g++ python${PYTHON_VERSION}-devel \

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ keywords = ['fms-hf-tuning', 'python', 'tuning']
2020
classifiers=[
2121
"License :: OSI Approved :: Apache Software License",
2222
"Development Status :: 4 - Beta",
23+
"Programming Language :: Python :: 3",
24+
"Programming Language :: Python :: 3.9",
25+
"Programming Language :: Python :: 3.10",
26+
"Programming Language :: Python :: 3.11",
2327
"Programming Language :: Python :: 3.12"
2428
]
2529
dependencies = [

0 commit comments

Comments
 (0)