Skip to content

Commit 6f49dbf

Browse files
authored
Merge pull request #125 from james-bellamy/fixes
Fix requirements to allow doc creation
2 parents 0e782c1 + 40f3a7a commit 6f49dbf

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,11 @@ venv.bak/
124124
# mkdocs documentation
125125
/site
126126

127+
docs/site
128+
docs/almdrlib.docs.rst
129+
docs/almdrlib.rst
130+
docs/modules.rst
131+
127132
# mypy
128133
.mypy_cache/
129134
.dmypy.json
@@ -135,3 +140,10 @@ dmypy.json
135140
# IntelliJ
136141
*.iml
137142
.idea
143+
144+
# VS code
145+
.vscode
146+
147+
# Node
148+
node_modules
149+
package-lock.json

docs/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ BUILDDIR = _build
1212

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

1818
VPATH = $(APISDIR)

requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ pyyaml==5.4.1
66
jsonschema[format_nongpl]==3.2.0
77
m2r2==0.3.2
88
boto3>=1.16.57
9+
markupsafe==2.0.1
10+
sphinxcontrib-contentui
11+
sphinx_paramlinks

0 commit comments

Comments
 (0)