Skip to content

Commit 9c9ef52

Browse files
authored
feat: updating Python versions (#265)
* feat: updating Python versions * fix: format issues
1 parent e9bc0bf commit 9c9ef52

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414
cancel-in-progress: true
1515

1616
env:
17-
MAIN_PYTHON_VERSION: '3.10'
17+
MAIN_PYTHON_VERSION: '3.12'
1818

1919
jobs:
2020
style:
@@ -43,7 +43,7 @@ jobs:
4343
strategy:
4444
fail-fast: false
4545
matrix:
46-
python-version: ["3.8", "3.9", "3.10", "3.11"]
46+
python-version: ["3.10", "3.11", "3.12", "3.13"]
4747

4848
steps:
4949
- uses: actions/checkout@v4

benchmark/tests/python/test_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
# The amount of sizes of numpy.ndarrays to be processed
4646
SIZES = [pow(2, n) for n in range(1, NVALUES)]
47-
SIZES_IDS = [f"{i:05d}" for i in SIZES]
47+
SIZES_IDS = [f"{i:05d}" for i in SIZES] # noqa: E231
4848

4949
# Initialize our seed
5050
seed(1)

src/ansys/eigen/python/testing/test_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
# The amount of sizes of numpy.ndarrays to be processed
4545
SIZES = [pow(2, n) for n in range(1, NVALUES)]
46-
SIZES_IDS = [f"{i:05d}" for i in SIZES]
46+
SIZES_IDS = [f"{i:05d}" for i in SIZES] # noqa: E231
4747

4848

4949
# Initialize the seed

0 commit comments

Comments
 (0)