-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit 'e77405d0b97f2beeaf167ef5bb4dbfed619668e3' of https://gi…
- Loading branch information
Showing
278 changed files
with
28,067 additions
and
6,794 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[run] | ||
omit = pyvista/ext/coverage.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Feature Request | ||
about: Request that a feature be added to PyVista | ||
title: '' | ||
labels: 'feature-request' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe what feature you would like added.** | ||
|
||
A clear and concise description of what you would like added. | ||
|
||
If you are requesting that a feature from VTK be wrapped or exposed, please include links to the VTK documentation, example, or class definition. | ||
|
||
Feel free to include pseudocode or screenshots of the requested outcome. | ||
|
||
----- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: Labeler | ||
on: [pull_request] | ||
jobs: | ||
label: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/labeler@v2 | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
documentation: | ||
- doc/* | ||
- examples/* | ||
- examples_flask/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# release.yml | ||
|
||
changelog: | ||
exclude: | ||
labels: | ||
- ignore-for-release | ||
categories: | ||
- title: New Features | ||
labels: | ||
- enhancement | ||
- title: Bug fixes or behavior changes | ||
labels: | ||
- bug | ||
- title: Documentation | ||
labels: | ||
- documentation | ||
- title: Maintenance | ||
labels: | ||
- maintenance |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Update Local Intersphinx Mappings | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 3 1 * *" | ||
|
||
|
||
jobs: | ||
intersphinx_update: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Update intersphinx objects | ||
run: make -C doc update-intersphinx | ||
|
||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v3 | ||
with: | ||
commit-message: "[create-pull-request] update local intersphinx" | ||
body: | | ||
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action | ||
These changes update all the intersphinx mappings. To run CI close and reopen PR. | ||
title: "Automated PR: Update Local Intersphinx" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
# check spelling, codestyle | ||
name: Style and Docstring Check | ||
|
||
on: [pull_request, workflow_dispatch] | ||
|
||
jobs: | ||
stylecheck: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.9 | ||
|
||
- name: Install style requirements | ||
run: | | ||
pip install -r requirements_style.txt --disable-pip-version-check | ||
- name: Code and Spelling Check | ||
run: | | ||
make stylecheck | ||
staticcheck: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.9 | ||
|
||
- name: Install style requirements | ||
run: | | ||
pip install -r requirements_static.txt --disable-pip-version-check | ||
- name: Static code check | ||
run: | | ||
make mypy | ||
docstringcheck: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.9 | ||
|
||
- uses: actions/cache@v2 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ hashFiles('setup.py') }}-${{ hashFiles('requirements_test.txt') }} | ||
|
||
- name: Install PyVista | ||
run: | | ||
pip install . | ||
- name: Install Doctest Requirements | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install libgl1-mesa-glx xvfb python-tk -y | ||
pip install -r requirements_test.txt | ||
- name: Software Report | ||
run: | | ||
xvfb-run python -c "import pyvista; print(pyvista.Report())" | ||
which python | ||
pip list | ||
- name: Test Package Docstrings | ||
run: | | ||
xvfb-run pytest -v --doctest-modules pyvista | ||
- name: Test Package Docstrings with Local Namespace | ||
run: | | ||
xvfb-run make doctest-modules-local-namespace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.