(version)
| 122 | |
| 123 | |
| 124 | def updateDocumentationVersionPlaceholders(version): |
| 125 | print('Updating version placeholder in documentation') |
| 126 | docsPath = os.path.join(catchPath, 'docs/') |
| 127 | for basePath, _, files in os.walk(docsPath): |
| 128 | for file in files: |
| 129 | if fnmatch.fnmatch(file, "*.md") and "contributing.md" != file: |
| 130 | updateVersionPlaceholder(os.path.join(basePath, file), version) |
| 131 | |
| 132 | |
| 133 | def performUpdates(version): |
no test coverage detected