|
16 | 16 | # Due to an error affecting kenlm and cmake (see https://github.com/kpu/kenlm/pull/464)
|
17 | 17 | # Also see the transformers patch for it https://github.com/huggingface/transformers/pull/37091
|
18 | 18 | "kenlm@git+https://github.com/kpu/kenlm@ba83eafdce6553addd885ed3da461bb0d60f8df7",
|
19 |
| - "transformers[sklearn,sentencepiece,audio,vision]==4.48.0", |
20 |
| - "huggingface_hub[hf_transfer]==0.27.1", |
| 19 | + "transformers[sklearn,sentencepiece,audio,vision]==4.51.2", |
| 20 | + "huggingface_hub[hf_transfer]==0.30.2", |
21 | 21 | # vision
|
22 | 22 | "Pillow",
|
23 | 23 | "librosa",
|
|
34 | 34 |
|
35 | 35 | extras = {}
|
36 | 36 |
|
37 |
| -extras["st"] = ["sentence_transformers==3.3.1"] |
38 |
| -extras["diffusers"] = ["diffusers==0.32.1", "accelerate==1.2.1"] |
| 37 | +extras["st"] = ["sentence_transformers==4.0.2"] |
| 38 | +extras["diffusers"] = ["diffusers==0.33.1", "accelerate==1.6.0"] |
39 | 39 | # Includes `peft` as PEFT requires `torch` so having `peft` as a core dependency
|
40 | 40 | # means that `torch` will be installed even if the `torch` extra is not specified.
|
41 |
| -extras["torch"] = ["torch==2.3.1", "torchvision", "torchaudio", "peft==0.14.0"] |
| 41 | +extras["torch"] = ["torch==2.5.1", "torchvision", "torchaudio", "peft==0.15.1"] |
42 | 42 | extras["test"] = [
|
43 | 43 | "pytest==7.2.1",
|
44 | 44 | "pytest-xdist",
|
|
60 | 60 | version=VERSION,
|
61 | 61 | author="Hugging Face",
|
62 | 62 | description="Hugging Face Inference Toolkit is for serving 🤗 Transformers models in containers.",
|
63 |
| - url="", |
| 63 | + url="https://github.com/huggingface/huggingface-inference-toolkit", |
64 | 64 | package_dir={"": "src"},
|
65 | 65 | packages=find_packages(where="src"),
|
66 | 66 | install_requires=install_requires,
|
67 | 67 | extras_require=extras,
|
68 | 68 | entry_points={"console_scripts": "serve=sagemaker_huggingface_inference_toolkit.serving:main"},
|
69 |
| - python_requires=">=3.8", |
| 69 | + python_requires=">=3.9", |
70 | 70 | license="Apache License 2.0",
|
71 | 71 | classifiers=[
|
72 | 72 | "Development Status :: 5 - Production/Stable",
|
|
76 | 76 | "License :: OSI Approved :: Apache Software License",
|
77 | 77 | "Operating System :: OS Independent",
|
78 | 78 | "Programming Language :: Python :: 3",
|
79 |
| - "Programming Language :: Python :: 3.8", |
80 | 79 | "Programming Language :: Python :: 3.9",
|
81 | 80 | "Programming Language :: Python :: 3.10",
|
82 | 81 | "Programming Language :: Python :: 3.11",
|
|
0 commit comments