File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 7
7
apt_packages :
8
8
- graphviz
9
9
jobs :
10
- post_install :
11
- - pip install poetry==2.0.1
12
- - poetry config virtualenvs.create false
10
+ pre_install :
11
+ - python -m pip install poetry==2.0.1
12
+ - poetry config virtualenvs.create false --local
13
13
- poetry install -E git -E s3 --with docs
14
+ - poetry export -E git -E s3 --with docs -f requirements.txt --without-hashes --output docs/requirements.txt
15
+
16
+ python :
17
+ install :
18
+ - requirements : docs/requirements.txt
14
19
15
20
sphinx :
16
21
builder : dirhtml
Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ classifiers = [
19
19
" Programming Language :: Python :: 3.12" ,
20
20
]
21
21
22
+ [tool .poetry .requires-plugins ]
23
+ poetry-plugin-export = " >=1.8"
24
+
22
25
[tool .poetry .dependencies ]
23
26
python = " >=3.9,<3.13" # Airflow providers require this upper boundary
24
27
You can’t perform that action at this time.
0 commit comments