Skip to content

Commit

Permalink
edit docs/source/conf.py, edit .github/workflows/test_and_build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderland committed Jun 1, 2024
1 parent b9381c2 commit 98004d2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_and_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9, 3.10, 3.11, 3.12]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand Down
20 changes: 18 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,15 @@
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [(master_doc, "pysgf.tex", "pysgf Documentation", "", "manual",)]
latex_documents = [
(
master_doc,
"pysgf.tex",
"pysgf Documentation",
"",
"manual",
)
]


# -- Options for manual page output ---------------------------------------
Expand All @@ -143,5 +151,13 @@
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, "pysgf", "pysgf Documentation", author, "pysgf", "Simple SGF Parser for Python.", "Miscellaneous",)
(
master_doc,
"pysgf",
"pysgf Documentation",
author,
"pysgf",
"Simple SGF Parser for Python.",
"Miscellaneous",
)
]

0 comments on commit 98004d2

Please sign in to comment.