From 786ef64231ecccc2b1c6d242d4a75b708ba4dfc8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Dec 2024 16:54:51 +0000 Subject: [PATCH 1/3] build(deps): bump pytest-rerunfailures from 14.0 to 15.0 (#368) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 33ada4a3a..bf5af2b0a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ tests = [ "parse==1.20.2", "pytest==8.3.4", "pytest-cov==6.0.0", - "pytest-rerunfailures==14.0", + "pytest-rerunfailures==15.0", "pyyaml==6.0.2", "regex==2024.11.6", ] From 30011ef2039407f24b0adcd8eb7edaf621d840b5 Mon Sep 17 00:00:00 2001 From: Camille <78221213+clatapie@users.noreply.github.com> Date: Mon, 9 Dec 2024 08:12:03 +0100 Subject: [PATCH 2/3] chore: support Python 3.13 (#370) --- .github/workflows/ci_cd.yml | 4 ++-- _package/pyproject.toml | 1 + tox.ini | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 47ff778d8..0442c104f 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -55,7 +55,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.10', '3.11', '3.12'] + python-version: ['3.10', '3.11', '3.12', '3.13'] steps: - name: Build wheelhouse and perform smoke test @@ -76,7 +76,7 @@ jobs: fail-fast: false matrix: os: [windows-latest, macos-latest] - python-version: ['3.10', '3.11', '3.12'] + python-version: ['3.10', '3.11', '3.12', '3.13'] steps: - name: Build wheelhouse and perform smoke test diff --git a/_package/pyproject.toml b/_package/pyproject.toml index 6223ed5d6..4fda95f30 100644 --- a/_package/pyproject.toml +++ b/_package/pyproject.toml @@ -24,6 +24,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ] dependencies = [ diff --git a/tox.ini b/tox.ini index 13e8db0bf..41444f725 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] description = Default tox environments list envlist = - style,{py310,py311,py312}{,-coverage},doc + style,{py310,py311,py312,py313}{,-coverage},doc skip_missing_interpreters = true isolated_build = true isolated_build_env = build @@ -12,6 +12,7 @@ basepython = py310: python3.10 py311: python3.11 py312: python3.12 + py313: python3.13 py: python3 {style,reformat,doc}: python3 setenv = From ed4ce4147b1df24c576f34a38efc92b600167a72 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 18:03:55 +0100 Subject: [PATCH 3/3] build(deps): bump ansys-sphinx-theme[autoapi] from 1.2.2 to 1.2.3 (#372) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bf5af2b0a..343937d11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,7 +56,7 @@ tests = [ ] doc = [ "Sphinx==8.1.3", - "ansys-sphinx-theme[autoapi]==1.2.2", + "ansys-sphinx-theme[autoapi]==1.2.3", "build>= 0.10.0", "flit>=3.8.0", "inflect==7.4.0",