diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a21b9abe..75e8b976 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: diff --git a/.github/workflows/nightly-doc-build.yml b/.github/workflows/nightly-doc-build.yml index 06a971dc..0dd23918 100644 --- a/.github/workflows/nightly-doc-build.yml +++ b/.github/workflows/nightly-doc-build.yml @@ -25,7 +25,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: '3.10' + python-version: '3.12' - name: Install project requirements run: | diff --git a/requirements/requirements_build.txt b/requirements/requirements_build.txt index 5c583fab..3d35d180 100644 --- a/requirements/requirements_build.txt +++ b/requirements/requirements_build.txt @@ -9,7 +9,7 @@ requests>=2.22.0 protobuf==5.26.1 grpcio==1.70.0 grpcio-tools==1.70.0 -pytest==8.3.4 +pytest==8.3.5 pytest-cov==5.0.0 pytest-grpc==0.8.0 conan>=1.48.0,<2 \ No newline at end of file diff --git a/requirements/requirements_docs.txt b/requirements/requirements_docs.txt index 8213d498..274fcc18 100644 --- a/requirements/requirements_docs.txt +++ b/requirements/requirements_docs.txt @@ -1,11 +1,11 @@ -Sphinx==8.1.3 +Sphinx==8.2.3 jupyter_sphinx==0.5.3 numpydoc==1.8.0 -ansys_sphinx_theme==1.3.1 +ansys_sphinx_theme==1.3.2 pypandoc==1.15 pytest-sphinx==0.6.3 sphinx-autobuild==2024.10.3 -sphinx-autodoc-typehints==3.0.1 +sphinx-autodoc-typehints==3.1.0 sphinx-copybutton==0.5.2 sphinx-gallery==0.19.0 sphinx-notfound-page==1.1.0 @@ -13,5 +13,5 @@ sphinxcontrib-websupport==2.0.0 sphinxemoji==0.3.1 pandas==2.2.3 pandoc>=2.1 -matplotlib==3.10.0 +matplotlib==3.10.1 breathe>=4.33.1 diff --git a/src/ansys/eigen/python/testing/test_tools.py b/src/ansys/eigen/python/testing/test_tools.py index bb6f6bd5..7c5de514 100644 --- a/src/ansys/eigen/python/testing/test_tools.py +++ b/src/ansys/eigen/python/testing/test_tools.py @@ -21,7 +21,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