Skip to content

Commit d2c899c

Browse files
committed
Release 3.5.2 to fix documentation generation
Quick release bump alongside fixes to the operation/fact docs generation scripts. No actual user-facing changes.
1 parent 2425386 commit d2c899c

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v3.5.2
2+
3+
- fix operation & fact docs generation
4+
15
# v3.5.1
26

37
Patch release with a bunch of great fixes. But notably want to call out two major changes for anyone working on the pyinfra code itself (huge thank you Daan for implementing these):

scripts/generate_facts_docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
def build_facts_docs():
1717
this_dir = path.dirname(path.realpath(__file__))
1818
docs_dir = path.abspath(path.join(this_dir, "..", "docs"))
19-
facts_dir = path.join(this_dir, "..", "pyinfra", "facts", "*.py")
19+
facts_dir = path.join(this_dir, "..", "src", "pyinfra", "facts", "*.py")
2020

2121
makedirs(path.join(docs_dir, "facts"), exist_ok=True)
2222

scripts/generate_operations_docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
def build_operations_docs():
1919
this_dir = path.dirname(path.realpath(__file__))
2020
docs_dir = path.abspath(path.join(this_dir, "..", "docs"))
21-
operations_dir = path.join(this_dir, "..", "pyinfra", "operations", "*.py")
21+
operations_dir = path.join(this_dir, "..", "src", "pyinfra", "operations", "*.py")
2222

2323
makedirs(path.join(docs_dir, "operations"), exist_ok=True)
2424

0 commit comments

Comments
 (0)