Skip to content

Commit

Permalink
chore: update version and dependencies in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
zackees committed Feb 1, 2025
1 parent a94aac0 commit c151be6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "transcribe-anything"
version = "2.8.4" # Update this manually or configure setuptools-scm for automatic versioning
version = "2.8.5" # Update this manually or configure setuptools-scm for automatic versioning
readme = "README.md"
description = "Uses Whisper AI to transcribe speech from video and audio files. Also accepts URLs for YouTube, Rumble, BitChute, clear file links, etc."
requires-python = ">=3.10"
Expand Down
10 changes: 5 additions & 5 deletions src/transcribe_anything/insanley_fast_whisper_reqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def get_current_python_version() -> str:
multiprocess==0.70.16
networkx==3.4.2
numba==0.61.0
numpy==1.26.4
numpy==2.1.3
omegaconf==2.3.0
openai-whisper==20240930
optuna==4.2.0
Expand All @@ -101,7 +101,7 @@ def get_current_python_version() -> str:
propcache==0.2.1
protobuf==5.29.3
psutil==6.1.1
pyannote-audio==3.1.0
pyannote-audio==3.3.2
pyannote-core==5.0.0
pyannote-database==5.1.3
pyannote-metrics==3.2.1
Expand All @@ -115,7 +115,7 @@ def get_current_python_version() -> str:
pysocks==1.7.1
python-dateutil==2.9.0.post0
python-editor==1.0.4
pytorch-lightning==2.1.4
pytorch-lightning==2.5.0
pytorch-metric-learning==2.8.1
pytz==2025.1
pyuseragents==1.0.5
Expand Down Expand Up @@ -155,7 +155,7 @@ def get_current_python_version() -> str:
torch-audiomentations==0.12.0
torch-pitch-shift==1.2.5
torchaudio==2.6.0
torchmetrics==1.3.2
torchmetrics==1.6.1
tqdm==4.64.1
transformers==4.48.2
translatepy==2.3
Expand Down Expand Up @@ -214,7 +214,7 @@ def get_environment() -> IsoEnv:
venv_dir = HERE / "venv" / "insanely_fast_whisper"
has_nvidia = has_nvidia_smi()
is_windows = sys.platform == "win32"
if False and has_nvidia and TENSOR_VERSION == "2.6.0" and is_windows:
if has_nvidia and TENSOR_VERSION == "2.6.0" and is_windows:
dep_lines = _COMPILED["WIN_CUDA_260"].splitlines()
else:
dep_lines = _get_reqs_generic(has_nvidia)
Expand Down

0 comments on commit c151be6

Please sign in to comment.