Skip to content

Commit

Permalink
Fix triton env marker (#1887)
Browse files Browse the repository at this point in the history
  • Loading branch information
169 committed Dec 11, 2023
1 parent e58f288 commit 8bc8860
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ torch
tqdm
more-itertools
tiktoken

This comment has been minimized.

Copy link
@n13l420

n13l420 May 23, 2024

whats happening?

triton>=2.0.0,<3;platform_machine=="x86_64" and sys_platform=="linux" or sys_platform=="linux2"
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os
import platform
import sys
from pathlib import Path

import pkg_resources
from setuptools import find_packages, setup
Expand Down Expand Up @@ -28,11 +28,10 @@ def read_version(fname="whisper/version.py"):
url="https://github.com/openai/whisper",
license="MIT",
packages=find_packages(exclude=["tests*"]),
install_requires=requirements
+ [
install_requires=[
str(r)
for r in pkg_resources.parse_requirements(
open(os.path.join(os.path.dirname(__file__), "requirements.txt"))
Path(__file__).with_name("requirements.txt").open()
)
],
entry_points={
Expand Down

0 comments on commit 8bc8860

Please sign in to comment.