Skip to content

Commit

Permalink
deploy: 8af9664
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesknap committed Nov 6, 2023
1 parent a729555 commit 7377dda
Show file tree
Hide file tree
Showing 134 changed files with 26,457 additions and 5 deletions.
10 changes: 5 additions & 5 deletions make_switcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ def get_versions(ref: str, add: Optional[str], remove: Optional[str]) -> List[st
# Get a sorted list of tags
tags = get_sorted_tags_list()

# Make the sorted versions list from main branches and tags
# Make the sorted versions list from change_linter_to_ruff branches and tags
versions: List[str] = []
for version in ["master", "main"] + tags:
for version in ["master", "change_linter_to_ruff"] + tags:
if version in builds:
versions.append(version)
builds.remove(version)
Expand All @@ -67,7 +67,7 @@ def write_json(path: Path, repository: str, versions: str):
path.write_text(text, encoding="utf-8")


def main(args=None):
def change_linter_to_ruff(args=None):
parser = ArgumentParser(
description="Make a versions.txt file from gh-pages directories"
)
Expand Down Expand Up @@ -95,5 +95,5 @@ def main(args=None):
write_json(args.output, args.repository, versions)


if __name__ == "__main__":
main()
if __name__ == "__change_linter_to_ruff__":
change_linter_to_ruff()
4 changes: 4 additions & 0 deletions pvi/.buildinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 8017b19bbbb2d6c073026743bc5b535b
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added pvi/.doctrees/developer/how-to/build-docs.doctree
Binary file not shown.
Binary file added pvi/.doctrees/developer/how-to/contribute.doctree
Binary file not shown.
Binary file added pvi/.doctrees/developer/how-to/lint.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added pvi/.doctrees/developer/how-to/run-tests.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added pvi/.doctrees/developer/index.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added pvi/.doctrees/environment.pickle
Binary file not shown.
Binary file added pvi/.doctrees/genindex.doctree
Binary file not shown.
Binary file added pvi/.doctrees/index.doctree
Binary file not shown.
Binary file not shown.
Binary file added pvi/.doctrees/user/how-to/edit-yaml.doctree
Binary file not shown.
Binary file added pvi/.doctrees/user/how-to/run-container.doctree
Binary file not shown.
Binary file added pvi/.doctrees/user/index.doctree
Binary file not shown.
Binary file added pvi/.doctrees/user/reference/api.doctree
Binary file not shown.
Binary file added pvi/.doctrees/user/reference/naming.doctree
Binary file not shown.
Binary file added pvi/.doctrees/user/tutorials/installation.doctree
Binary file not shown.
Loading

0 comments on commit 7377dda

Please sign in to comment.