File tree Expand file tree Collapse file tree 2 files changed +15
-9
lines changed Expand file tree Collapse file tree 2 files changed +15
-9
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ def handle(
172
172
:param label: The label to map to an AppConfig instance.
173
173
:raises CommandError: If no matching app can be found.
174
174
"""
175
- if isinstance (label , AppConfig ): # pragma: no cover
175
+ if isinstance (label , AppConfig ):
176
176
return label
177
177
try :
178
178
return apps .get_app_config (label )
Original file line number Diff line number Diff line change 5
5
# Required
6
6
version : 2
7
7
8
+ python :
9
+ version : 3.12
10
+ install :
11
+ - method : poetry
12
+ path : .
13
+
8
14
# Set the version of Python and other tools you might need
9
15
build :
10
16
os : ubuntu-22.04
11
- tools :
12
- python : " 3.12"
13
- jobs :
14
- post_create_environment :
15
- - pip install poetry
16
- - poetry config virtualenvs.create false
17
- post_install :
18
- - poetry install
17
+ # tools:
18
+ # python: "3.12"
19
+ # jobs:
20
+ # post_create_environment:
21
+ # - pip install poetry
22
+ # - poetry config virtualenvs.create false
23
+ # post_install:
24
+ # - poetry install
19
25
20
26
# Build documentation in the docs/ directory with Sphinx
21
27
sphinx :
You can’t perform that action at this time.
0 commit comments