Skip to content

Commit

Permalink
Merge pull request #62 from trustimaging/fix-docs
Browse files Browse the repository at this point in the history
Fix doc build
  • Loading branch information
ccuetom authored Oct 26, 2023
2 parents f2dd959 + 29e311e commit 68af183
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 6 deletions.
22 changes: 22 additions & 0 deletions docs/.readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Set the version of Python and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.11"

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/source/conf.py

# We recommend specifying your dependencies to enable reproducible builds:
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
python:
install:
- requirements: requirements.txt
5 changes: 0 additions & 5 deletions docs/source/stride/api/optimisation/pipelines.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,6 @@ Steps
:undoc-members:
:show-inheritance:

.. automodule:: stride.optimisation.pipelines.steps.filter_wavelets
:members:
:undoc-members:
:show-inheritance:

.. automodule:: stride.optimisation.pipelines.steps.norm_per_shot
:members:
:undoc-members:
Expand Down
5 changes: 4 additions & 1 deletion mosaic/profile/profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@

import mosaic

import _profile
try:
import _profile
except ImportError:
pass


__all__ = ['Profiler', 'GlobalProfiler', 'profiler',
Expand Down

0 comments on commit 68af183

Please sign in to comment.