Skip to content

Commit 8da3274

Browse files
committed
Bump version to 3.2.2 and fix command in cli_init_insane
1 parent ce66da7 commit 8da3274

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies = [
2020
"python-dotenv>=1.0.1",
2121
]
2222
# VERSION
23-
version = "3.2.1" # Update this manually or configure setuptools-scm for automatic versioning
23+
version = "3.2.2" # Update this manually or configure setuptools-scm for automatic versioning
2424
maintainers = [{ name = "Zachary Vorhies", email = "[email protected]" }]
2525

2626
[project.urls]

src/transcribe_anything/cli_init_insane.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def main() -> int:
2727
if sys.platform == "win32":
2828
env.run(["python", "-c", "import os; print(os.getcwd())"])
2929
else:
30-
env.run([cwd])
30+
env.run(["pwd"])
3131
print("Installing static ffmpeg...")
3232
os.system("static_ffmpeg -version")
3333
return 0

0 commit comments

Comments
 (0)