Skip to content

Commit 7f2dada

Browse files
committed
Added dropdown for Python Version in tasks
1 parent 946f33b commit 7f2dada

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

src/lib/components/v2/tasks/TaskCollection.svelte

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -379,13 +379,18 @@
379379
<div class="input-group-text">
380380
<label class="font-monospace" for="python_version">Python Version</label>
381381
</div>
382-
<input
382+
<select
383383
id="python_version"
384384
name="python_version"
385-
type="text"
386385
class="form-control"
387386
bind:value={python_version}
388-
/>
387+
>
388+
<option value="">Select...</option>
389+
<option>3.9</option>
390+
<option>3.10</option>
391+
<option>3.11</option>
392+
<option>3.12</option>
393+
</select>
389394
</div>
390395
<div class="form-text">Python version to install and run the package tasks</div>
391396
</div>

0 commit comments

Comments
 (0)