@@ -20,8 +20,9 @@ Wheels are built in CI for each released version; the latest release can be foun
2020You can confirm proper installation via the ` wheely_bucket ` CLI:
2121<!-- [[[cog
2222import cog
23+ import os
2324from subprocess import PIPE, run
24- out = run(["wheely_bucket", "--help"], stdout=PIPE, encoding="ascii")
25+ out = run(["wheely_bucket", "--help"], stdout=PIPE, encoding="ascii", env={**os.environ, "TYPER_USE_RICH": "0"} )
2526cog.out(
2627 f"\n```text\n$ wheely_bucket --help\n{out.stdout.rstrip()}\n```\n\n"
2728)
@@ -54,8 +55,9 @@ For both entry points, `python-version` and `platform` allow specification of mu
5455Manual package specification is accomplished via the ` wheely_bucket package ` command:
5556<!-- [[[cog
5657import cog
58+ import os
5759from subprocess import PIPE, run
58- out = run(["wheely_bucket", "package", "--help"], stdout=PIPE, encoding="ascii")
60+ out = run(["wheely_bucket", "package", "--help"], stdout=PIPE, encoding="ascii", env={**os.environ, "TYPER_USE_RICH": "0"} )
5961cog.out(
6062 f"\n```text\n$ wheely_bucket package --help\n{out.stdout.rstrip()}\n```\n\n"
6163)
@@ -91,8 +93,9 @@ Options:
9193Project lockfile specification is accomplished via the ` wheely_bucket project ` command:
9294<!-- [[[cog
9395import cog
96+ import os
9497from subprocess import PIPE, run
95- out = run(["wheely_bucket", "project", "--help"], stdout=PIPE, encoding="ascii")
98+ out = run(["wheely_bucket", "project", "--help"], stdout=PIPE, encoding="ascii", env={**os.environ, "TYPER_USE_RICH": "0"} )
9699cog.out(
97100 f"\n```text\n$ wheely_bucket project --help\n{out.stdout.rstrip()}\n```\n\n"
98101)
0 commit comments