-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: several fixes/improvements for python version selection (#2730)
* do not use free-threaded python by default * document how to get free-threaded python via python-build * add precompiled rc releases * use precompiled install_only_stripped variants * always use the latest precompiled build for a particular version * remove duplicate precompiled versions * dynamically add settings to node/python/ruby docs Fixes #2716
- Loading branch information
Showing
23 changed files
with
480 additions
and
401 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
CHANGELOG.md | ||
.venv | ||
registry/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<script setup> | ||
defineProps(["setting", "level"]); | ||
</script> | ||
|
||
<template> | ||
<h2 v-if="level === 2"> | ||
<code>{{ setting.key }}</code> | ||
<span v-if="setting.deprecated" class="VPBadge warning">deprecated</span> | ||
</h2> | ||
<h3 v-if="level === 3"> | ||
<code>{{ setting.key }}</code> | ||
<span v-if="setting.deprecated" class="VPBadge warning">deprecated</span> | ||
</h3> | ||
|
||
<ul> | ||
<li> | ||
Type: <code>{{ setting.type }}</code> | ||
<span v-if="setting.optional">(optional)</span> | ||
</li> | ||
<li> | ||
Env: <code>{{ setting.env }}</code> | ||
</li> | ||
<li> | ||
Default: <code>{{ setting.default }}</code> | ||
</li> | ||
<li v-if="setting.deprecated">Deprecated: {{ setting.deprecated }}</li> | ||
<li v-if="setting.enum"> | ||
Choices: | ||
<ul> | ||
<li v-for="choice in setting.enum"> | ||
<code>{{ choice[0] }}</code> – {{ choice[1] }} | ||
</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
|
||
<span v-html="setting.docs"></span> | ||
</template> |
Oops, something went wrong.