We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9042b6e commit 9108c35Copy full SHA for 9108c35
.github/workflows/release.yml
@@ -39,11 +39,13 @@ jobs:
39
40
# Set up self
41
- name: Install proto-schema-parser
42
- run: pip install .[dev]
+ run: pip install
43
44
# Generate documentation
45
- name: Generate documentation
46
- run: python -m python_docstring_markdown src/proto_schema_parser DOCUMENTATION.md
+ run: |
47
+ pip install python-docstring-markdown
48
+ python -m python_docstring_markdown src/proto_schema_parser DOCUMENTATION.md
49
50
# Set pyproject.toml version using pdm
51
- name: Set version
pyproject.toml
@@ -55,7 +55,4 @@ style = [
55
]
56
tests = [
57
"pytest>=7.3.2",
58
-]
59
-dev = [
60
- "python-docstring-markdown>=0.2.1",
61
+]
0 commit comments