Skip to content

Commit

Permalink
Merge pull request #125 from james-bellamy/fixes
Browse files Browse the repository at this point in the history
Fix requirements to allow doc creation
  • Loading branch information
carlisom authored Apr 25, 2023
2 parents 0e782c1 + 40f3a7a commit 6f49dbf
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,11 @@ venv.bak/
# mkdocs documentation
/site

docs/site
docs/almdrlib.docs.rst
docs/almdrlib.rst
docs/modules.rst

# mypy
.mypy_cache/
.dmypy.json
Expand All @@ -135,3 +140,10 @@ dmypy.json
# IntelliJ
*.iml
.idea

# VS code
.vscode

# Node
node_modules
package-lock.json
2 changes: 1 addition & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ BUILDDIR = _build

APISDIR = $(shell printf "import alsdkdefs\nprint(alsdkdefs.get_apis_dir())" | python)
APIDOCSDIR = ./$(BUILDDIR)/api_html
APISPECFILES := $(shell find $(APISDIR) -name '*.yaml')
APISPECFILES := $(shell find $(APISDIR) -regex ".*.v[0-9]*.yaml")
APIDOCFILES := $(subst $(APISDIR),$(APIDOCSDIR),$(APISPECFILES:%.yaml=%.html))

VPATH = $(APISDIR)
Expand Down
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ pyyaml==5.4.1
jsonschema[format_nongpl]==3.2.0
m2r2==0.3.2
boto3>=1.16.57
markupsafe==2.0.1
sphinxcontrib-contentui
sphinx_paramlinks

0 comments on commit 6f49dbf

Please sign in to comment.