forked from OSOceanAcoustics/echopype
-
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 pull request OSOceanAcoustics#560 from OSOceanAcoustics/dev
Release/v0.5.6
- Loading branch information
Showing
65 changed files
with
2,915 additions
and
5,548 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,19 @@ | ||
name: echopype | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- python=3.10 | ||
- dask | ||
- matplotlib | ||
- netCDF4 | ||
- numpy | ||
- pynmea2 | ||
- pytz | ||
- scipy | ||
- xarray | ||
- zarr | ||
- fsspec | ||
- requests | ||
- aiohttp | ||
- s3fs | ||
- mamba=0.20.0 |
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 |
---|---|---|
|
@@ -16,4 +16,4 @@ dependencies: | |
- requests | ||
- aiohttp | ||
- s3fs | ||
- mamba | ||
- mamba=0.20.0 |
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 |
---|---|---|
|
@@ -16,4 +16,4 @@ dependencies: | |
- requests | ||
- aiohttp | ||
- s3fs | ||
- mamba | ||
- mamba=0.20.0 |
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 |
---|---|---|
|
@@ -16,4 +16,4 @@ dependencies: | |
- requests | ||
- aiohttp | ||
- s3fs | ||
- mamba | ||
- mamba=0.20.0 |
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,88 @@ | ||
name: Packaging | ||
|
||
# Only run for tagged releases | ||
on: | ||
push: | ||
branches: | ||
- dev | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-artifact: | ||
name: Build echopype package | ||
runs-on: ubuntu-20.04 | ||
if: github.repository == 'OSOceanAcoustics/echopype' | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
with: | ||
# fetch all history so that setuptools-scm works | ||
fetch-depth: 0 | ||
|
||
- name: Set up Python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: 3.9 | ||
|
||
- name: Install dependencies | ||
run: python -m pip install setuptools wheel | ||
|
||
# This step is only necessary for testing purposes and for TestPyPI | ||
- name: Fix up version string for TestPyPI | ||
if: ${{ !startsWith(github.ref, 'refs/tags') }} | ||
run: | | ||
# Change setuptools-scm local_scheme to "no-local-version" so the | ||
# local part of the version isn't included, making the version string | ||
# compatible with PyPI. | ||
sed --in-place "s/node-and-date/no-local-version/g" setup.py | ||
- name: Build source and wheel distributions | ||
run: | | ||
python setup.py sdist bdist_wheel | ||
echo "" | ||
echo "Generated files:" | ||
ls -lh dist/ | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: releases | ||
path: dist | ||
|
||
test-built-dist: | ||
name: Test echopype package | ||
needs: build-artifact | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/setup-python@v2 | ||
name: Install Python | ||
with: | ||
python-version: 3.9 | ||
- uses: actions/download-artifact@v2 | ||
with: | ||
name: releases | ||
path: dist | ||
- name: List contents of built dist | ||
run: | | ||
ls -ltrh | ||
ls -ltrh dist | ||
- name: Upgrade pip | ||
run: | | ||
sleep 3 | ||
python -m pip install --upgrade pip | ||
- name: Check wheel file | ||
run: | | ||
python -m pip uninstall --yes echopype | ||
echo "=== Testing wheel file ===" | ||
# Install wheel to get dependencies and check import | ||
wheel_file=$(ls ./dist | grep ".whl") | ||
python -m pip install ./dist/$wheel_file | ||
python -c "import echopype; print(echopype.__version__)" | ||
echo "=== Done testing wheel file ===" | ||
- name: Check source tar | ||
run: | | ||
python -m pip uninstall --yes echopype | ||
echo "=== Testing source tar file ===" | ||
# Install tar gz and check import | ||
source_file=$(ls ./dist | grep ".tar.gz") | ||
python -m pip install ./dist/$source_file | ||
python -c "import echopype; print(echopype.__version__)" | ||
echo "=== Done testing source tar file ===" |
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
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,5 +1,6 @@ | ||
sphinx_rtd_theme | ||
sphinx-automodapi | ||
sphinxcontrib-mermaid | ||
jupyter-book | ||
numpydoc | ||
docutils<0.18 | ||
docutils<0.18 |
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,47 @@ | ||
# Book settings | ||
# Learn more at https://jupyterbook.org/customize/config.html | ||
|
||
title: "" | ||
author: Echopype Developers | ||
copyright: "2022" | ||
logo: _static/echopype_logo_square.png | ||
|
||
# Force re-execution of notebooks on each build. | ||
# See https://jupyterbook.org/content/execute.html | ||
execute: | ||
execute_notebooks: 'off' | ||
timeout: -1 | ||
|
||
# Define the name of the latex output file for PDF builds | ||
# latex: | ||
# latex_documents: | ||
# targetname: book.tex | ||
|
||
# Add a bibtex file so that we can create citations | ||
# bibtex_bibfiles: | ||
# - references.bib | ||
|
||
# Information about where the book exists on the web | ||
repository: | ||
url: https://github.com/OSOceanAcoustics/echopype # Online location of your book | ||
path_to_book: docs # Optional path to your book, relative to the repository root | ||
branch: main # Which branch of the repository should be used when creating links (optional) | ||
|
||
# Add GitHub buttons to your book | ||
# See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository | ||
html: | ||
home_page_in_navbar: false | ||
use_issues_button: true | ||
use_repository_button: true | ||
|
||
sphinx: | ||
extra_extensions: [ | ||
'sphinx_automodapi.automodapi', | ||
'numpydoc', | ||
# 'sphinx.ext.autodoc', | ||
'sphinx.ext.intersphinx', | ||
'sphinx.ext.mathjax', | ||
'sphinx.ext.ifconfig', | ||
'sphinx.ext.githubpages', | ||
'sphinxcontrib.mermaid' | ||
] |
Oops, something went wrong.