Skip to content

Commit cb792ea

Browse files
authored
Merge branch 'main' into zzqbranch
2 parents 7129b80 + 9e02435 commit cb792ea

File tree

4 files changed

+15
-16
lines changed

4 files changed

+15
-16
lines changed

.github/labeler.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
documentation:
2-
- doc/source/**/*
3-
- README.rst
2+
- changed-files:
3+
- any-glob-to-any-file: ['doc/**/*', 'README.rst']
44
maintenance:
5-
- .github/**/*
6-
- .flake8
7-
- pyproject.toml
5+
- changed-files:
6+
- any-glob-to-any-file: ['.github/**/*', 'pyproject.toml', '.flake8']
87
dependencies:
9-
- pyproject.toml
8+
- changed-files:
9+
- any-glob-to-any-file: ['pyproject.toml']
1010
testing:
11-
- _unittest/conftest.py
12-
- tests/*
11+
- changed-files:
12+
- any-glob-to-any-file: ['_unittest/conftest.py', 'tests/*']

.github/workflows/ci_cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
uses: actions/checkout@v4
4747

4848
- name: "Set up Python ${{ env.MAIN_PYTHON_VERSION }}"
49-
uses: actions/setup-python@v4
49+
uses: actions/setup-python@v5
5050
with:
5151
python-version: ${{ env.MAIN_PYTHON_VERSION }}
5252
cache: 'pip'
@@ -144,7 +144,7 @@ jobs:
144144
uses: actions/checkout@v4
145145

146146
- name: "Set up Python"
147-
uses: actions/setup-python@v4
147+
uses: actions/setup-python@v5
148148
with:
149149
python-version: ${{ env.MAIN_PYTHON_VERSION }}
150150
cache: 'pip'

.github/workflows/label.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,9 @@ jobs:
3232

3333
# Label based on modified files
3434
- name: Label based on changed files
35-
uses: actions/labeler@v4
35+
uses: actions/labeler@v5
3636
with:
3737
repo-token: "${{ secrets.GITHUB_TOKEN }}"
38-
sync-labels: ''
3938

4039
# Label based on branch name
4140
- uses: actions-ecosystem/action-add-labels@v1

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ dependencies = [
3232

3333
[project.optional-dependencies]
3434
tests = [
35-
"pyvista==0.42.3",
35+
"pyvista==0.43.0",
3636
"matplotlib==3.8.2",
3737
"numpy==1.26.2",
3838
"pytest==7.4.3",
3939
"pytest-cov==4.1.0",
4040
"joblib==1.3.2",
41-
"pandas==2.1.3",
41+
"pandas==2.1.4",
4242
"openpyxl==3.1.2",
4343
"scikit-learn==1.3.2",
4444
"pytest-xdist==3.5.0",
@@ -47,9 +47,9 @@ tests = [
4747
doc = [
4848
"recommonmark==0.7.1",
4949
"matplotlib==3.8.2",
50-
"imageio==2.33.0",
50+
"imageio==2.33.1",
5151
"imageio-ffmpeg==0.4.9",
52-
"pyvista==0.42.3",
52+
"pyvista==0.43.0",
5353
"numpydoc==1.6.0",
5454
"Sphinx==7.2.6",
5555
"sphinx-autobuild==2021.3.14",

0 commit comments

Comments
 (0)