Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

only try to clear lines, if there are already artists in the axes. #99

Merged
merged 3 commits into from
Sep 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -15,11 +15,11 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
py: ['3.8', '3.9']
py: ['3.9', '3.10', '3.11']
weldx_version: ['weldx']
include:
- os: ubuntu-latest
py: 3.8
py: '3.10'
weldx_version: 'git+https://github.com/BAMWelDX/weldx.git'
env:
WELDX_VERSION: ${{ matrix.weldx_version }}
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -21,8 +21,9 @@ classifiers =
Natural Language :: English
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering :: Physics
project_urls =
Documentation = https://weldx.readthedocs.io
@@ -32,7 +33,7 @@ project_urls =

[options]
packages = find:
python_requires = >=3.8
python_requires = >=3.9
setup_requires =
setuptools >=38.3.0
setuptools_scm
3 changes: 2 additions & 1 deletion weldx_widgets/widget_groove_sel.py
Original file line number Diff line number Diff line change
@@ -385,7 +385,8 @@ def _update_plot(self, *args):
self.groove_obj = groove_obj

# TODO: re-plot can be avoided (e.g. set_xydata?)
self.ax.lines.clear()
if self.ax.lines:
self.ax.lines.clear()
# self.ax.texts = []

self.groove_obj.plot(line_style="-", ax=self.ax)