-
Notifications
You must be signed in to change notification settings - Fork 67
Conda API docs #335
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conda API docs #335
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,56 @@ | ||
on: [push, pull_request] | ||
|
||
name: Make Sphinx API Docs | ||
|
||
jobs: | ||
mkdocs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build CPP Core | ||
run: | | ||
git clone https://github.com/symengine/symengine symengine-cpp | ||
cd symengine-cpp | ||
export SOURCE_DIR=`pwd` | ||
git checkout `cat ../symengine_version.txt` | ||
cd $SOURCE_DIR | ||
source bin/install_travis.sh | ||
cd $SOURCE_DIR | ||
bin/test_travis.sh | ||
env: | ||
WITH_MPC: yes | ||
WITH_MPFR: yes | ||
WITH_FLINT: yes | ||
WITH_SCIPY: yes | ||
WITH_DOCS: yes | ||
INTEGER_CLASS: flint | ||
TEST_CPP: no | ||
TEST_SYMPY: yes | ||
MAKEFLAGS: -j2 | ||
our_install_dir: $HOME/our_usr/ | ||
- uses: s-weigand/setup-conda@v1 | ||
- name: Build Bindings and Docs | ||
run: | | ||
export PYTHON_SOURCE_DIR=$GITHUB_WORKSPACE | ||
cd $PYTHON_SOURCE_DIR | ||
source bin/install_travis.sh | ||
bin/test_travis.sh | ||
pip install sphinx-autobuild m2r2 sphinxcontrib-apidoc sphinx-book-theme | ||
sphinx-build docs/ genDocs/ | ||
env: | ||
WITH_MPC: yes | ||
WITH_MPFR: yes | ||
WITH_FLINT: yes | ||
WITH_SCIPY: yes | ||
WITH_DOCS: yes | ||
INTEGER_CLASS: flint | ||
TEST_CPP: no | ||
TEST_SYMPY: yes | ||
MAKEFLAGS: -j2 | ||
our_install_dir: $HOME/our_usr/ | ||
- name: Deploy Documentation | ||
if: ${{ (github.ref == 'refs/heads/main' && github.repository == 'Symengine/symengine.py') || (github.ref == 'refs/heads/master' && github.repository == 'Symengine/symengine.py')}} | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./genDocs |
This file contains hidden or 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 |
---|---|---|
|
@@ -35,3 +35,8 @@ symengine.egg-info/ | |
# Temp files | ||
*~ | ||
.eggs/ | ||
|
||
# Docs | ||
genDocs/ | ||
docs/_build/ | ||
docs/source/ |
This file contains hidden or 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 hidden or 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,90 @@ | ||
# Configuration file for the Sphinx documentation builder. | ||
# | ||
# This file only contains a selection of the most common options. For a full | ||
# list see the documentation: | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html | ||
|
||
# -- Path setup -------------------------------------------------------------- | ||
|
||
# If extensions (or modules to document with autodoc) are in another directory, | ||
# add these directories to sys.path here. If the directory is relative to the | ||
# documentation root, use os.path.abspath to make it absolute, like shown here. | ||
# | ||
# import os | ||
# import sys | ||
# sys.path.insert(0, os.path.abspath('.')) | ||
|
||
import os | ||
import sys | ||
|
||
sys.path.insert(0, os.path.abspath("..")) | ||
|
||
import symengine | ||
|
||
# -- Project information ----------------------------------------------------- | ||
|
||
project = 'symengine' | ||
copyright = '2021, SymEngine development team <symengine@googlegroups.com>' | ||
author = 'SymEngine development team <symengine@googlegroups.com>' | ||
|
||
# The full version, including alpha/beta/rc tags | ||
release = '0.6.1' | ||
|
||
|
||
# -- General configuration --------------------------------------------------- | ||
|
||
# Add any Sphinx extension module names here, as strings. They can be | ||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom | ||
# ones. | ||
extensions = [ | ||
"sphinx.ext.autodoc", # Consumes docstrings | ||
"sphinx.ext.napoleon", # Allows for Google Style Docs | ||
"sphinx.ext.viewcode", # Links to source code | ||
"sphinx.ext.intersphinx", # Connects to other documentation | ||
"sphinx.ext.todo", # Show TODO details | ||
"sphinx.ext.imgconverter", # Handle svg images | ||
"sphinx.ext.duration", # Shows times in the processing pipeline | ||
"sphinx.ext.mathjax", # Need math support | ||
"sphinx.ext.githubpages", # Puts the .nojekyll and CNAME files | ||
"sphinxcontrib.apidoc", # Automatically sets up sphinx-apidoc | ||
# "recommonmark", # Parses markdown | ||
"m2r2", # Parses markdown in rst | ||
] | ||
|
||
# Add any paths that contain templates here, relative to this directory. | ||
templates_path = ['_templates'] | ||
|
||
# List of patterns, relative to source directory, that match files and | ||
# directories to ignore when looking for source files. | ||
# This pattern also affects html_static_path and html_extra_path. | ||
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] | ||
|
||
# API Doc settings | ||
apidoc_module_dir = "../" | ||
apidoc_output_dir = "source" | ||
apidoc_excluded_paths = ["tests"] | ||
apidoc_separate_modules = True | ||
|
||
# -- Options for HTML output ------------------------------------------------- | ||
|
||
# The theme to use for HTML and HTML Help pages. See the documentation for | ||
# a list of builtin themes. | ||
# | ||
html_theme = "sphinx_book_theme" | ||
html_title = "Symengine Python Bindings" | ||
# html_logo = "path/to/logo.png" | ||
# html_favicon = "path/to/favicon.ico" | ||
html_theme_options = { | ||
"repository_url": "https://github.com/symengine/symengine.py", | ||
"use_repository_button": True, | ||
"use_issues_button": True, | ||
"use_edit_page_button": True, | ||
"path_to_docs": "docs", | ||
"use_download_button": True, | ||
"home_page_in_toc": True | ||
} | ||
|
||
# Add any paths that contain custom static files (such as style sheets) here, | ||
# relative to this directory. They are copied after the builtin static files, | ||
# so a file named "default.css" will overwrite the builtin "default.css". | ||
html_static_path = ['_static'] |
This file contains hidden or 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,22 @@ | ||
.. symengine documentation master file, created by | ||
sphinx-quickstart on Tue Jan 26 09:42:30 2021. | ||
You can adapt this file completely to your liking, but it should at least | ||
contain the root `toctree` directive. | ||
|
||
Symengine Python API Documentation | ||
=================================== | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: Contents: | ||
|
||
source/modules | ||
|
||
.. mdinclude:: ../README.md | ||
|
||
Indices and tables | ||
================== | ||
|
||
* :ref:`genindex` | ||
* :ref:`modindex` | ||
* :ref:`search` |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.