-
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.
- Loading branch information
Showing
7 changed files
with
10 additions
and
10 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 |
---|---|---|
|
@@ -18,11 +18,11 @@ jobs: | |
run: | | ||
pip install pdoc3 | ||
pip install -e . | ||
python -We -m pdoc --html atmos_cloud_sim_uj_utils | ||
JUPYTER_PLATFORM_DIRS=1 python -We -m pdoc --html open_atmos_jupyter_utils | ||
- name: Deploy | ||
if: github.ref == 'refs/heads/main' | ||
uses: JamesIves/[email protected] | ||
with: | ||
BRANCH: pdoc | ||
FOLDER: html/atmos_cloud_sim_uj_utils | ||
FOLDER: html/open_atmos_jupyter_utils | ||
CLEAN: true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
""" | ||
utility routines used in PySDM and PyMPDATA example Jupyter notebooks | ||
""" | ||
from open_atmos_jupyter_utils.pip_install_on_colab import pip_install_on_colab | ||
from open_atmos_jupyter_utils.temporary_file import TemporaryFile | ||
from open_atmos_jupyter_utils.show_plot import show_plot, save_and_make_link |
File renamed without changes.
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
File renamed without changes.
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 |
---|---|---|
|
@@ -23,7 +23,7 @@ def get_long_description(): | |
author='https://github.com/open-atmos/jupyter-utils/graphs/contributors', | ||
author_email='[email protected]', | ||
license="GPL-3.0", | ||
packages=find_packages(include=['atmos_cloud_sim_uj_utils', 'atmos_clous_sim_uj_utils.*']), | ||
packages=find_packages(include=['open_atmos_jupyter_utils', 'open_atmos_jupyter_utils.*']), | ||
long_description=get_long_description(), | ||
long_description_content_type="text/markdown", | ||
project_urls={ | ||
|