Skip to content

Commit 5b4326f

Browse files
Bump version 0.8.1
1 parent f4a5328 commit 5b4326f

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

doc/changelog.d/231.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fix: Revert some bad changes from pre-commit

examples/00-basic-pyvista-examples/remote_trame_view.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
)
3838
3939
# create a trame service, in whatever port is available in your system
40-
ts = TrameService(websocket_port=2024 - 2025)
40+
ts = TrameService(websocket_port=8765)
4141
4242
# run the service
4343
ts.run()

examples/01-advanced-pyansys-examples/using_meshobject_with_field_data.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,10 @@ def name(self):
8888

8989
# Define the camera position
9090
cpos = (
91-
(-0.2024 - 20252024 - 20252024 - 20252024 - 2025, 0.2024 - 20252024 - 20252024 - 20252024 - 20253, -1.2024 - 20252024 - 20252024 - 2025142),
92-
(0.2024 - 20252024 - 20252024 - 20252024 - 20255, -0.2024 - 20252024 - 20252024 - 20252024 - 20252, -0.2024 - 20252024 - 20252024 - 20252024 - 202587),
93-
(0.2024 - 20252024 - 20252024 - 20252024 - 202585, 0.2024 - 20252024 - 20252024 - 20252024 - 2025, 0.2024 - 20252024 - 20252024 - 20252024 - 20258),
91+
(-0.3331763564757694, 0.08802797061044923, -1.055269197114142),
92+
(0.08813476356878325, -0.03975174212669032, -0.012819952697089087),
93+
(0.045604530283921085, 0.9935979348314435, 0.10336039239608838),
9494
)
95-
9695
######################################
9796
# Get the available field data arrays
9897
# ====================================

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
44

55
[project]
66
name = "ansys-tools-visualization-interface"
7-
version = "0.8.0"
7+
version = "0.8.1"
88
description = "A Python visualization interface for PyAnsys libraries"
99
readme = "README.rst"
1010
requires-python = ">=3.10,<4"

src/ansys/tools/visualization_interface/utils/color.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class Color(Enum):
3333
PICKED = "#BB6EEE"
3434
"""Color for the actors that are currently picked."""
3535

36-
EDGE = "#2024 - 202500"
36+
EDGE = "#000000"
3737
"""Default color for the edges."""
3838

3939
PICKED_EDGE = "#9C9C9C"

src/ansys/tools/visualization_interface/utils/logger.py

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

2323
"""Provides the singleton helper class for the logger."""
2424

25-
# logger from https://gist.github.com/huklee/cea2024 - 20251dd05da7c2024 - 20252024 - 2025f52fcc7c
25+
# logger from https://gist.github.com/huklee/cea20761dd05da7c39120084f52fcc7c
2626
import datetime
2727
import logging
2828
from pathlib import Path

0 commit comments

Comments
 (0)