-
Notifications
You must be signed in to change notification settings - Fork 347
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into update-metrics
- Loading branch information
Showing
475 changed files
with
5,448 additions
and
3,611 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
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 |
---|---|---|
|
@@ -6,6 +6,9 @@ on: | |
pull_request: | ||
branches: | ||
- release** | ||
defaults: | ||
run: | ||
shell: bash | ||
jobs: | ||
integration: | ||
name: integration | ||
|
@@ -14,7 +17,7 @@ jobs: | |
- name: Clone repo | ||
uses: actions/[email protected] | ||
- name: Set up python | ||
uses: actions/setup-python@v5.1.1 | ||
uses: actions/setup-python@v5.2.0 | ||
with: | ||
python-version: "3.12" | ||
- name: Cache dependencies | ||
|
@@ -42,7 +45,7 @@ jobs: | |
- name: Clone repo | ||
uses: actions/[email protected] | ||
- name: Set up python | ||
uses: actions/setup-python@v5.1.1 | ||
uses: actions/setup-python@v5.2.0 | ||
with: | ||
python-version: "3.12" | ||
- name: Cache dependencies | ||
|
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 |
---|---|---|
|
@@ -8,6 +8,9 @@ on: | |
branches: | ||
- main | ||
- release** | ||
defaults: | ||
run: | ||
shell: bash | ||
jobs: | ||
mypy: | ||
name: mypy | ||
|
@@ -16,7 +19,7 @@ jobs: | |
- name: Clone repo | ||
uses: actions/[email protected] | ||
- name: Set up python | ||
uses: actions/setup-python@v5.1.1 | ||
uses: actions/setup-python@v5.2.0 | ||
with: | ||
python-version: "3.12" | ||
- name: Cache dependencies | ||
|
@@ -41,7 +44,7 @@ jobs: | |
- name: Clone repo | ||
uses: actions/[email protected] | ||
- name: Set up python | ||
uses: actions/setup-python@v5.1.1 | ||
uses: actions/setup-python@v5.2.0 | ||
with: | ||
python-version: "3.12" | ||
- name: Cache dependencies | ||
|
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 |
---|---|---|
|
@@ -8,6 +8,9 @@ on: | |
branches: | ||
- main | ||
- release** | ||
defaults: | ||
run: | ||
shell: bash | ||
jobs: | ||
latest: | ||
name: latest | ||
|
@@ -22,7 +25,7 @@ jobs: | |
- name: Clone repo | ||
uses: actions/[email protected] | ||
- name: Set up python | ||
uses: actions/setup-python@v5.1.1 | ||
uses: actions/setup-python@v5.2.0 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Cache dependencies | ||
|
@@ -34,17 +37,6 @@ jobs: | |
if: ${{ runner.os != 'macOS' }} | ||
- name: Setup headless display for pyvista | ||
uses: pyvista/setup-headless-display-action@v2 | ||
- name: Install apt dependencies (Linux) | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install unrar | ||
if: ${{ runner.os == 'Linux' }} | ||
- name: Install brew dependencies (macOS) | ||
run: brew install rar | ||
if: ${{ runner.os == 'macOS' }} | ||
- name: Install choco dependencies (Windows) | ||
run: choco install 7zip | ||
if: ${{ runner.os == 'Windows' }} | ||
- name: Install pip dependencies | ||
if: steps.cache.outputs.cache-hit != 'true' | ||
run: | | ||
|
@@ -69,25 +61,21 @@ jobs: | |
- name: Clone repo | ||
uses: actions/[email protected] | ||
- name: Set up python | ||
uses: actions/setup-python@v5.1.1 | ||
uses: actions/setup-python@v5.2.0 | ||
with: | ||
python-version: "3.10" | ||
- name: Cache dependencies | ||
uses: actions/[email protected] | ||
id: cache | ||
with: | ||
path: ${{ env.pythonLocation }} | ||
key: ${{ env.pythonLocation }}-${{ hashFiles('requirements/min-reqs.old') }}-${{ hashFiles('requirements/mins-cons.old') }} | ||
key: ${{ env.pythonLocation }}-${{ hashFiles('requirements/min-reqs.old') }} | ||
- name: Setup headless display for pyvista | ||
uses: pyvista/setup-headless-display-action@v2 | ||
- name: Install apt dependencies (Linux) | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install unrar | ||
- name: Install pip dependencies | ||
if: steps.cache.outputs.cache-hit != 'true' | ||
run: | | ||
pip install -r requirements/min-reqs.old -c requirements/min-cons.old | ||
pip install -r requirements/min-reqs.old | ||
pip cache purge | ||
- name: List pip dependencies | ||
run: pip list | ||
|
@@ -108,7 +96,7 @@ jobs: | |
- name: Clone repo | ||
uses: actions/[email protected] | ||
- name: Set up python | ||
uses: actions/setup-python@v5.1.1 | ||
uses: actions/setup-python@v5.2.0 | ||
with: | ||
python-version: "3.12" | ||
- name: Cache dependencies | ||
|
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 |
---|---|---|
|
@@ -10,6 +10,9 @@ on: | |
- main | ||
paths: | ||
- docs/tutorials/** | ||
defaults: | ||
run: | ||
shell: bash | ||
jobs: | ||
notebooks: | ||
name: notebooks | ||
|
@@ -18,7 +21,7 @@ jobs: | |
- name: Clone repo | ||
uses: actions/[email protected] | ||
- name: Set up python | ||
uses: actions/setup-python@v5.1.1 | ||
uses: actions/setup-python@v5.2.0 | ||
with: | ||
python-version: "3.12" | ||
- name: Cache dependencies | ||
|
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 |
---|---|---|
@@ -1,2 +1,7 @@ | ||
# Ignore artifacts: | ||
# Ignore artifacts | ||
tests/data/*/** | ||
|
||
# Automatically igored by git, but not by prettier | ||
.mypy_cache | ||
.pytest_cache | ||
.ruff_cache |
This file was deleted.
Oops, something went wrong.
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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.