Skip to content

Commit

Permalink
Fix minimum version of auto-gptq (#1504)
Browse files Browse the repository at this point in the history
update autogptq version
  • Loading branch information
fxmarty authored Nov 1, 2023
1 parent 9a9a7bf commit 57a06b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion optimum/utils/import_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
TORCH_MINIMUM_VERSION = packaging.version.parse("1.11.0")
TRANSFORMERS_MINIMUM_VERSION = packaging.version.parse("4.25.0")
DIFFUSERS_MINIMUM_VERSION = packaging.version.parse("0.18.0")
AUTOGPTQ_MINIMUM_VERSION = packaging.version.parse("0.5.0")
AUTOGPTQ_MINIMUM_VERSION = packaging.version.parse("0.4.99") # Allows 0.5.0.dev0


# This is the minimal required version to support some ONNX Runtime features
Expand Down

0 comments on commit 57a06b7

Please sign in to comment.