diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 203958cd..c3fba6f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ concurrency: cancel-in-progress: true env: - MAIN_PYTHON_VERSION: '3.10' + MAIN_PYTHON_VERSION: '3.12' jobs: style: @@ -43,7 +43,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 diff --git a/benchmark/tests/python/test_tools.py b/benchmark/tests/python/test_tools.py index a7d390e6..fa50af55 100644 --- a/benchmark/tests/python/test_tools.py +++ b/benchmark/tests/python/test_tools.py @@ -44,7 +44,7 @@ # The amount of sizes of numpy.ndarrays to be processed SIZES = [pow(2, n) for n in range(1, NVALUES)] -SIZES_IDS = [f"{i:05d}" for i in SIZES] +SIZES_IDS = [f"{i:05d}" for i in SIZES] # noqa: E231 # Initialize our seed seed(1) diff --git a/src/ansys/eigen/python/testing/test_tools.py b/src/ansys/eigen/python/testing/test_tools.py index c86db066..85cf998e 100644 --- a/src/ansys/eigen/python/testing/test_tools.py +++ b/src/ansys/eigen/python/testing/test_tools.py @@ -43,7 +43,7 @@ # The amount of sizes of numpy.ndarrays to be processed SIZES = [pow(2, n) for n in range(1, NVALUES)] -SIZES_IDS = [f"{i:05d}" for i in SIZES] +SIZES_IDS = [f"{i:05d}" for i in SIZES] # noqa: E231 # Initialize the seed