Skip to content

Commit

Permalink
Merge branch 'main' into fix/command_issues
Browse files Browse the repository at this point in the history
  • Loading branch information
clatapie authored Dec 12, 2024
2 parents fbc0c7a + ed4ce41 commit 29b0d30
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions _package/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ 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",
]
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",
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -12,6 +12,7 @@ basepython =
py310: python3.10
py311: python3.11
py312: python3.12
py313: python3.13
py: python3
{style,reformat,doc}: python3
setenv =
Expand Down

0 comments on commit 29b0d30

Please sign in to comment.