-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'apply-cookiecutter' into fix-warnings
- Loading branch information
Showing
60 changed files
with
8,352 additions
and
6,856 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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: PR Check Label for version Label | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- labeled | ||
- unlabeled | ||
- synchronize | ||
|
||
jobs: | ||
check-labels: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check for version label | ||
run: | | ||
echo "Checking for version label on pull request..." | ||
PR_DATA=$(gh api repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}) | ||
LABEL_NAMES=$(echo "$PR_DATA" | jq -r '.labels[].name') | ||
echo "Labels: $LABEL_NAMES" | ||
REGEX="^v[0-9]+\.[0-9]+\.[0-9]+$" | ||
MATCHES=$(echo "$LABEL_NAMES" | grep -E "$REGEX") | ||
if [ -z "$MATCHES" ]; then | ||
echo "Error: No version label found on this pull request. Please add a label in the format vX.Y.Z." | ||
exit 1 | ||
fi | ||
env: | ||
GH_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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<h1 align="center"> | ||
<img src="https://github.com/pyfar/gallery/raw/main/docs/resources/logos/pyfar_logos_fixed_size_spharpy.png" width="300"> | ||
</h1><br> | ||
|
||
|
||
|
||
[![PyPI version](https://badge.fury.io/py/spharpy.svg)](https://badge.fury.io/py/spharpy) | ||
[![Documentation Status](https://readthedocs.org/projects/spharpy/badge/?version=latest)](https://spharpy.readthedocs.io/en/latest/?badge=latest) | ||
[![CircleCI](https://circleci.com/gh/pyfar/spharpy.svg?style=shield)](https://circleci.com/gh/pyfar/spharpy) | ||
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/pyfar/gallery/main?labpath=docs/gallery/interactive/pyfar_introduction.ipynb) | ||
|
||
Spherical array processing in python. | ||
|
||
Getting Started | ||
=============== | ||
|
||
The [pyfar workshop](https://mybinder.org/v2/gh/pyfar/gallery/main?labpath=docs/gallery/interactive/pyfar_introduction.ipynb) | ||
gives an overview of the most important pyfar functionality and is a good | ||
starting point. It is part of the [pyfar example gallery](https://pyfar-gallery.readthedocs.io/en/latest/examples_gallery.html) | ||
that also contains more specific and in-depth | ||
examples that can be executed interactively without a local installation by | ||
clicking the mybinder.org button on the respective example. The | ||
[pyfar documentation](https://pyfar.readthedocs.io) gives a detailed and complete overview of pyfar. All | ||
these information are available from [pyfar.org](https://pyfar.org). | ||
|
||
Installation | ||
============ | ||
|
||
Use pip to install spharpy | ||
|
||
pip install spharpy | ||
|
||
(Requires Python 3.8 or higher) | ||
|
||
|
||
Contributing | ||
============ | ||
|
||
Check out the [contributing guidelines](https://pyfar.readthedocs.io/en/stable/contributing.html) if you want to become part of pyfar. |
Oops, something went wrong.