Skip to content

Commit e105d10

Browse files
maint: Update Pyvista
1 parent 117527b commit e105d10

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.github/workflows/ci_cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- main
1111

1212
env:
13-
MAIN_PYTHON_VERSION: '3.12'
13+
MAIN_PYTHON_VERSION: '3.13'
1414
RESET_IMAGE_CACHE: 0
1515
PACKAGE_NAME: ansys-tools-visualization-interface
1616
DOCUMENTATION_CNAME: visualization-interface.tools.docs.pyansys.com
@@ -87,7 +87,7 @@ jobs:
8787
fail-fast: false
8888
matrix:
8989
os: [ubuntu-latest, windows-latest, macos-latest]
90-
python-version: ['3.10', '3.11', '3.12']
90+
python-version: ['3.10', '3.11', '3.12', '3.13']
9191
should-release:
9292
- ${{ github.event_name == 'push' && contains(github.ref, 'refs/tags') }}
9393
exclude:

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117

118118
# Intersphinx mapping
119119
intersphinx_mapping = {
120-
"python": ("https://docs.python.org/3.11", None),
120+
"python": ("https://docs.python.org/3.13", None),
121121
"numpy": ("https://numpy.org/doc/stable", None),
122122
"scipy": ("https://docs.scipy.org/doc/scipy/", None),
123123
"pyvista": ("https://docs.pyvista.org/version/stable", None),

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ classifiers = [
2020
"Programming Language :: Python :: 3.10",
2121
"Programming Language :: Python :: 3.11",
2222
"Programming Language :: Python :: 3.12",
23+
"Programming Language :: Python :: 3.13",
2324
]
2425
dependencies = [
25-
"pyvista >= 0.43.0,<1",
26+
"pyvista >= 0.45.0,<1",
2627
"websockets >= 12.0,< 16",
2728
"trame >= 3.6.0,<4",
2829
"trame-vtk >= 2.8.7,<3",
@@ -36,6 +37,7 @@ pyvistaqt = [
3637
]
3738
tests = [
3839
"pytest==8.3.5",
40+
"pyvista==0.45.0",
3941
"pytest-pyvista==0.1.9",
4042
"pytest-cov==6.1.1",
4143
"pyside6==6.9.0",

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[tox]
22
description = Default tox environments list
33
envlist =
4-
style,{tests39,tests310,tests311,tests312}{,-coverage},doc
4+
style,{tests310,tests311,tests312, tests313}{,-coverage},doc
55
skip_missing_interpreters = true
66
isolated_build = true
77
isolated_build_env = build
88

99
[testenv]
1010
description = Checks for project unit tests and coverage (if desired)
1111
basepython =
12-
tests39: python3.9
1312
tests310: python3.10
1413
tests311: python3.11
1514
tests312: python3.12
15+
tests313: python3.13
1616
{style,tests,doc}: python3
1717
setenv =
1818
PYTHONUNBUFFERED = yes

0 commit comments

Comments
 (0)