-
Notifications
You must be signed in to change notification settings - Fork 3
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' of github.com:GreenBankObservatory/dysh
- Loading branch information
Showing
53 changed files
with
2,448 additions
and
1,982 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,20 @@ | ||
name: pre-commit | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: [main, release*] | ||
|
||
|
||
jobs: | ||
pre-commit: | ||
env: | ||
SKIP: ruff | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
# must match the version in .pre-commit-config.yaml:default_language_version.python | ||
python-version: '3.9' | ||
- uses: pre-commit/[email protected] |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
## Getting Started | ||
### Installation | ||
|
||
Dysh requires Python 3.8+ and recent versions of [astropy]( https://astropy.org), [numpy](https://numpy.org), [scipy](https://scipy.org), [pandas](https://pandas.pydata.org), [specutils](https://specutils.readthedocs.io/en/stable/), and [matplotlib](https://matplotlib.org). | ||
Dysh requires Python 3.8+ and recent versions of [astropy]( https://astropy.org), [numpy](https://numpy.org), [scipy](https://scipy.org), [pandas](https://pandas.pydata.org), [specutils](https://specutils.readthedocs.io/en/stable/), and [matplotlib](https://matplotlib.org). | ||
|
||
#### With pip from PyPi | ||
Dysh is most easily installed with *pip*, which will take care of any dependencies. The packaged code is hosted at the [Python Packaging Index](https://pypi.org/project/dysh). | ||
|
@@ -15,7 +15,7 @@ Dysh is most easily installed with *pip*, which will take care of any dependenci | |
``` | ||
|
||
#### From github | ||
To install from github without creating a separate virtual environment: | ||
To install from github without creating a separate virtual environment: | ||
|
||
```bash | ||
$ git clone [email protected]:GreenBankObservatory/dysh.git | ||
|
@@ -64,7 +64,7 @@ The virtual environment will be created the first time; subsequent invoking ``ha | |
|
||
```bash | ||
(dysh) $ exit | ||
$ | ||
$ | ||
``` | ||
|
||
4. Each time when you come back in this directory without being in this virtual environment, you'll need to load the virtual environment | ||
|
@@ -80,4 +80,3 @@ The virtual environment will be created the first time; subsequent invoking ``ha | |
```bash | ||
$ pytest | ||
``` | ||
|
Oops, something went wrong.