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 353a0f3 commit 3be755aCopy full SHA for 3be755a
.github/workflows/docs-build.yml
@@ -23,6 +23,8 @@ jobs:
23
24
- name: Set up poetry
25
uses: Gr1N/setup-poetry@v9
26
+ with:
27
+ poetry-version: "2.1.1"
28
29
- name: Configure poetry
30
run: poetry config virtualenvs.in-project true
docs/conf.py
@@ -1,3 +1,9 @@
1
+import sys
2
+from pathlib import Path
3
+
4
+ROOT_DIR = Path(__file__).resolve().parents[1]
5
+sys.path.insert(0, str(ROOT_DIR))
6
7
import openapi_schema_validator
8
9
project = "openapi-schema-validator"
0 commit comments