Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Merge branch 'master' into debug
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Dec 19, 2023
2 parents ec090f4 + 9cf29b2 commit c10137a
Show file tree
Hide file tree
Showing 33 changed files with 3,234 additions and 200 deletions.
16 changes: 12 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,18 @@ _dependencies


#Documentation
!mkdocs.yml
!docs/*
!docs/*/*
!docs/*/*/*
!.readthedocs.yaml
!docs/
!docs/**/*
docs/**/*.ai
docs/_build/
docs/_build/**/*
docs/generated/
docs/generated/**/*
docs/**/*.DS_Store
docs/**/*.swp


!README_figs/*

#Docker and Singularity files
Expand Down
26 changes: 26 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Build documentation with Sphinx
sphinx:
configuration: docs/conf.py
fail_on_warning: false # Optional: Set to true if you want the build to fail on warnings.

# Optionally set the OS, Python version and other tools
build:
os: ubuntu-22.04
tools:
python: "3.11"

# Optionally build your docs in additional formats such as PDF and ePub
# formats:
# - pdf
# - epub

python:
install:
- requirements: docs/requirements.txt
74 changes: 0 additions & 74 deletions CMakeFiles/3.27.0/CMakeCCompiler.cmake

This file was deleted.

64 changes: 0 additions & 64 deletions CMakeFiles/3.27.0/CMakeFortranCompiler.cmake

This file was deleted.

15 changes: 0 additions & 15 deletions CMakeFiles/3.27.0/CMakeSystem.cmake

This file was deleted.

1 change: 0 additions & 1 deletion distclean.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ ENDMACRO()
FILE(GLOB_RECURSE CMAKECACHE "${TOPDIR}/*CMakeCache.txt")
FILE(GLOB_RECURSE CMAKEINSTALL "${TOPDIR}/*cmake_install.cmake"
"${TOPDIR}/*install_manifest.txt")
FILE(GLOB_RECURSE MAKEFILE "${TOPDIR}/*Makefile")
FILE(GLOB_RECURSE CMAKETESTFILES "${TOPDIR}/*CTestTestfile.cmake")
SET(TOPDIRECTORIES "${TOPDIR}/lib"
"${TOPDIR}/libexec"
Expand Down
20 changes: 20 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Minimal makefile for Sphinx documentation
#

# You can set these variables from the command line, and also
# from the environment for the first two.
SPHINXOPTS ?=
SPHINXBUILD ?= sphinx-build
SOURCEDIR = .
BUILDDIR = _build

# Put it first so that "make" without argument is like "make help".
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

.PHONY: help Makefile

# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
Loading

0 comments on commit c10137a

Please sign in to comment.