|
5 | 5 | # We don't declare our dependency on transformers here because we build with
|
6 | 6 | # different packages for different variants
|
7 | 7 |
|
8 |
| -VERSION = "0.5.0" |
| 8 | +VERSION = "0.5.1" |
9 | 9 |
|
10 | 10 | # Ubuntu packages
|
11 | 11 | # libsndfile1-dev: torchaudio requires the development version of the libsndfile package which can be installed via a system package manager. On Ubuntu it can be installed as follows: apt install libsndfile1-dev
|
12 | 12 | # ffmpeg: ffmpeg is required for audio processing. On Ubuntu it can be installed as follows: apt install ffmpeg
|
13 | 13 | # libavcodec-extra : libavcodec-extra includes additional codecs for ffmpeg
|
14 | 14 |
|
15 | 15 | install_requires = [
|
16 |
| - "transformers[sklearn,sentencepiece,audio,vision,sentencepiece]==4.44.0", |
17 |
| - "huggingface_hub[hf_transfer]==0.24.5", |
| 16 | + "transformers[sklearn,sentencepiece,audio,vision,sentencepiece]==4.46.0", |
| 17 | + "huggingface_hub[hf_transfer]==0.26.2", |
18 | 18 | # vision
|
19 | 19 | "Pillow",
|
20 | 20 | "librosa",
|
|
31 | 31 |
|
32 | 32 | extras = {}
|
33 | 33 |
|
34 |
| -extras["st"] = ["sentence_transformers==3.1.1"] |
35 |
| -extras["diffusers"] = ["diffusers==0.30.0", "accelerate==0.33.0"] |
| 34 | +extras["st"] = ["sentence_transformers==3.2.1"] |
| 35 | +extras["diffusers"] = ["diffusers==0.31.0", "accelerate==1.0.1"] |
36 | 36 | # Includes `peft` as PEFT requires `torch` so having `peft` as a core dependency
|
37 | 37 | # means that `torch` will be installed even if the `torch` extra is not specified.
|
38 |
| -extras["torch"] = ["torch==2.2.2", "torchvision", "torchaudio", "peft==0.12.0"] |
| 38 | +extras["torch"] = ["torch==2.3.1", "torchvision", "torchaudio", "peft==0.13.2"] |
39 | 39 | extras["test"] = [
|
40 | 40 | "pytest==7.2.1",
|
41 | 41 | "pytest-xdist",
|
|
0 commit comments