Skip to content

Commit

Permalink
fix f-string formatting in setup.py update (#2330)
Browse files Browse the repository at this point in the history
  • Loading branch information
bfineran authored Jun 14, 2024
1 parent cfe86f4 commit 4a2fcd9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@
"protobuf>=3.12.2,<=3.20.3",
"click>=7.1.2,!=8.0.0", # latest version < 8.0 + blocked version with reported bug
]
_nm_deps = [f"{'sparsezoo' if is_release else 'sparsezoo-nightly'}>={1.7.0}"]
_nm_deps = [f"{'sparsezoo' if is_release else 'sparsezoo-nightly'}>=1.7.0"]
_deepsparse_deps = [
f"{'deepsparse' if is_release else 'deepsparse-nightly'}>={1.7.0}"
f"{'deepsparse' if is_release else 'deepsparse-nightly'}>=1.7.0"
]
_deepsparse_ent_deps = [f"deepsparse-ent>={1.7.0}"]
_deepsparse_ent_deps = ["deepsparse-ent>=1.7.0"]

_onnxruntime_deps = ["onnxruntime>=1.0.0"]
_clip_deps = ["open_clip_torch==2.20.0"]
Expand Down

0 comments on commit 4a2fcd9

Please sign in to comment.