Skip to content

Commit f3b5c13

Browse files
upgrade to python 3.12
Signed-off-by: cliu-us <[email protected]>
1 parent 7004e22 commit f3b5c13

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ jobs:
4040
strategy:
4141
matrix:
4242
python:
43-
- "3.9"
4443
- "3.10"
4544
- "3.11"
45+
- "3.12"
4646
platform:
4747
- "ubuntu-latest"
4848

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "fms-model-optimizer"
77
description = "Quantization Techniques"
88
readme = "README.md"
99
license = {text = "Apache-2.0"}
10-
requires-python = ">3.9,<=3.12"
10+
requires-python = ">3.9,<3.13"
1111
classifiers=[
1212
"Development Status :: 3 - Alpha",
1313
"License :: OSI Approved :: Apache Software License",

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ commands =
1717
unitcov: {envpython} -W error::UserWarning -m pytest --cov=fms_mo --cov-report term --cov-report=html:coverage-{env_name} --cov-report=xml:coverage-{env_name}.xml --html=durations/{env_name}.html {posargs:tests -m "not (examples or slow)"}
1818

1919
[testenv:py3]
20-
basepython = python3.11
20+
basepython = python3.12
2121

2222
[testenv:unit]
2323
basepython = {[testenv:py3]basepython}
@@ -91,6 +91,6 @@ commands =
9191

9292
[gh]
9393
python =
94+
3.11 = 3.12-{unitcov}
9495
3.11 = 3.11-{unitcov}
9596
3.10 = 3.10-{unitcov}
96-
3.9 = 3.9-{unitcov}

0 commit comments

Comments
 (0)