Skip to content

Commit f627d38

Browse files
authored
Remove f-strings
1 parent ddd195f commit f627d38

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

install_requirements.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ def python_is_compatible():
101101

102102
# pip packages needed by exir.
103103
EXIR_REQUIREMENTS = [
104-
f"torch==2.5.0",
105-
f"torchvision==0.20.0", # For testing.
104+
"torch==2.5.0",
105+
"torchvision==0.20.0", # For testing.
106106
"typing-extensions",
107107
]
108108

@@ -121,7 +121,7 @@ def python_is_compatible():
121121
# TODO: Make each example publish its own requirements.txt
122122
EXAMPLES_REQUIREMENTS = [
123123
"timm==1.0.7",
124-
f"torchaudio==2.5.0",
124+
"torchaudio==2.5.0",
125125
"torchsr==1.0.4",
126126
"transformers==4.42.4",
127127
]

0 commit comments

Comments
 (0)