Skip to content

Commit

Permalink
Use custom doxypypy
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan-wanna-M committed Aug 8, 2024
1 parent 30635e6 commit f22fbbf
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ jobs:
with:
python-version: '3.10'
- name: Install Doxypypy
run: pip install doxypypy
run: pip install git+https://github.com/Dan-wanna-M/doxypypy@master --force-reinstall
- name: Doxygen Deploy Action
uses: Dan-Wanna-M/[email protected]
with:
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ jobs:
with:
python-version: '3.10'
- name: Install Doxypypy
run: pip install doxypypy
run: pip install git+https://github.com/Dan-wanna-M/doxypypy@master --force-reinstall
- name: Doxygen Deploy Action
uses: Dan-Wanna-M/[email protected]
with:
6 changes: 3 additions & 3 deletions Doxyfile
Original file line number Diff line number Diff line change
@@ -289,7 +289,7 @@ TAB_SIZE = 4
# with the commands \{ and \} for these it is advised to use the version @{ and
# @} or use a double escape (\\{ and \\})

ALIASES += "classmethod=\xrefitem classmethod \"Class Method\" \"Class Methods\""
ALIASES =

# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
# only. Doxygen will then generate output that is more tailored for C. For
@@ -444,7 +444,7 @@ GROUP_NESTED_COMPOUNDS = NO
# \nosubgrouping command.
# The default value is: YES.

SUBGROUPING = YES
SUBGROUPING = NO

# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions
# are shown inside the group in which they are included (e.g. using \ingroup)
@@ -1378,7 +1378,7 @@ HTML_EXTRA_FILES =
# The default value is: AUTO_LIGHT.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_COLORSTYLE = AUTO_LIGHT
HTML_COLORSTYLE = LIGHT

# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen
# will adjust the colors in the style sheet and background images according to
2 changes: 1 addition & 1 deletion py_filter.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
doxypypy -a -c --ns="formatron" $1
doxypypy -a -c $1
2 changes: 1 addition & 1 deletion src/formatron/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""@package formatron.config
"""
Configuration classes for Formatron.
"""
from dataclasses import dataclass
2 changes: 1 addition & 1 deletion src/formatron/extractor.py
Original file line number Diff line number Diff line change
@@ -91,7 +91,7 @@ def __init__(self, regex: str, capture_name: str, nonterminal: str):
self._regex = re.compile(regex)
self._nonterminal = nonterminal

def extract(self, input_str: str) -> typing.Optional[tuple[str, re.Match|None]]:
def extract(self, input_str: str) -> typing.Optional[tuple[str, re.Match | None]]:
"""
Extract the string using the regular expression.
2 changes: 1 addition & 1 deletion src/formatron/schemas/dict_inference.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""@package formatron.schemas.dict_inference
"""
This module contains utilities for inferring schemas from dictionaries.
"""
import collections.abc

0 comments on commit f22fbbf

Please sign in to comment.