Skip to content

Commit 29b0d30

Browse files
authored
Merge branch 'main' into fix/command_issues
2 parents fbc0c7a + ed4ce41 commit 29b0d30

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.github/workflows/ci_cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
strategy:
5656
fail-fast: false
5757
matrix:
58-
python-version: ['3.10', '3.11', '3.12']
58+
python-version: ['3.10', '3.11', '3.12', '3.13']
5959

6060
steps:
6161
- name: Build wheelhouse and perform smoke test
@@ -76,7 +76,7 @@ jobs:
7676
fail-fast: false
7777
matrix:
7878
os: [windows-latest, macos-latest]
79-
python-version: ['3.10', '3.11', '3.12']
79+
python-version: ['3.10', '3.11', '3.12', '3.13']
8080

8181
steps:
8282
- name: Build wheelhouse and perform smoke test

_package/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ classifiers = [
2424
"Programming Language :: Python :: 3.10",
2525
"Programming Language :: Python :: 3.11",
2626
"Programming Language :: Python :: 3.12",
27+
"Programming Language :: Python :: 3.13",
2728
]
2829

2930
dependencies = [

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ tests = [
5050
"parse==1.20.2",
5151
"pytest==8.3.4",
5252
"pytest-cov==6.0.0",
53-
"pytest-rerunfailures==14.0",
53+
"pytest-rerunfailures==15.0",
5454
"pyyaml==6.0.2",
5555
"regex==2024.11.6",
5656
]
5757
doc = [
5858
"Sphinx==8.1.3",
59-
"ansys-sphinx-theme[autoapi]==1.2.2",
59+
"ansys-sphinx-theme[autoapi]==1.2.3",
6060
"build>= 0.10.0",
6161
"flit>=3.8.0",
6262
"inflect==7.4.0",

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
description = Default tox environments list
33
envlist =
4-
style,{py310,py311,py312}{,-coverage},doc
4+
style,{py310,py311,py312,py313}{,-coverage},doc
55
skip_missing_interpreters = true
66
isolated_build = true
77
isolated_build_env = build
@@ -12,6 +12,7 @@ basepython =
1212
py310: python3.10
1313
py311: python3.11
1414
py312: python3.12
15+
py313: python3.13
1516
py: python3
1617
{style,reformat,doc}: python3
1718
setenv =

0 commit comments

Comments
 (0)