forked from ARM-DOE/ACT
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ARM-DOE:main' into icartt-write
- Loading branch information
Showing
198 changed files
with
5,690 additions
and
1,528 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,10 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
groups: | ||
actions: | ||
patterns: | ||
- "*" |
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,33 @@ | ||
name: linting | ||
|
||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
pre-job: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
should_skip: ${{ steps.skip_check.outputs.should_skip }} | ||
steps: | ||
- id: skip_check | ||
uses: fkirc/skip-duplicate-actions@master | ||
with: | ||
concurrent_skipping: 'same_content' | ||
skip_after_successful_duplicate: 'false' | ||
do_not_skip: '["workflow_dispatch", "schedule"]' | ||
linting: | ||
needs: pre-job | ||
runs-on: ubuntu-latest | ||
if: ${{ needs.pre-job.outputs.should_skip != 'true' }} | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.10' | ||
- 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
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 |
---|---|---|
|
@@ -4,14 +4,17 @@ Atmospheric data Community Toolkit (ACT) | |
|
||
|AnacondaCloud| |CodeCovStatus| |Build| |Docs| | ||
|
||
|CondaDownloads| |Zenodo| |ARM| | ||
|CondaDownloads| |PyPiDownloads| |Zenodo| |ARM| | ||
|
||
.. |AnacondaCloud| image:: https://anaconda.org/conda-forge/act-atmos/badges/version.svg | ||
:target: https://anaconda.org/conda-forge/act-atmos | ||
|
||
.. |CondaDownloads| image:: https://anaconda.org/conda-forge/act-atmos/badges/downloads.svg | ||
:target: https://anaconda.org/conda-forge/act-atmos/files | ||
|
||
.. |PyPiDownloads| image:: https://img.shields.io/pypi/dm/act_atmos.svg | ||
:target: https://pypi.org/project/act-atmos/ | ||
|
||
.. |Zenodo| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.3855537.svg | ||
:target: https://doi.org/10.5281/zenodo.3855537 | ||
|
||
|
@@ -38,16 +41,14 @@ Please report any issues or feature requests by sumitting an `Issue <https://git | |
Version 2.0 | ||
~~~~~~~~~~~ | ||
|
||
ACT will soon have a version 2.0 release. This release will contain many function | ||
ACT now has a version 2.0 release. This release contains many function | ||
naming changes such as IO and Discovery module function naming changes. To | ||
prepare for this release, a `v2.0 <https://arm-doe.github.io/ACT/userguide/GUIDE_V2.html>`_ | ||
has been provided that explains the changes and how to work with the new syntax. | ||
|
||
To test out the release candidate 2.0.0-rc.0 of ACT, use:: | ||
|
||
pip install git+https://github.com/ARM-DOE/[email protected] | ||
The new release is available on both PyPI and conda-forge. | ||
|
||
Please report any bugs of the release candidate to the Issue Tracker mentioned in | ||
Please report any bugs of the 2.0 release to the Issue Tracker mentioned in | ||
the Important Links section below. | ||
|
||
Important Links | ||
|
@@ -144,18 +145,14 @@ the source code or use git to checkout the repository:: | |
|
||
git clone https://github.com/ARM-DOE/ACT.git | ||
|
||
To install in your home directory, use:: | ||
|
||
python setup.py install --user | ||
Once you have the directory locally, you can install ACT in | ||
development mode using:: | ||
|
||
To install for all users on Unix/Linux:: | ||
|
||
python setup.py build | ||
sudo python setup.py install | ||
pip install -e . | ||
|
||
Development install using pip from within the ACT directory:: | ||
If you want to install the repository directly, you can use:: | ||
|
||
pip install -e . | ||
pip install git+https://github.com/ARM-DOE/ACT.git | ||
|
||
Contributing | ||
~~~~~~~~~~~~ | ||
|
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
Oops, something went wrong.