Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
Signed-off-by: Praneeth Bedapudi <praneeth@bpraneeth.com>
  • Loading branch information
bedapudi6788 committed Mar 14, 2024
1 parent 32daf7b commit 82823ab
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion fastdeploy/_infer.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
import time
import json
import pickle
import msgpack

try:
import msgpack
except:
msgpack = None

import zstandard
import threading

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
EMAIL = "praneeth@bpraneeth.com"
AUTHOR = "BEDAPUDI PRANEETH"
REQUIRES_PYTHON = ">=3.6.0"
VERSION = "3.0.9"
VERSION = "3.0.10"

# What packages are required for this module to be executed?
REQUIRED = ["falcon", "liteindex", "zstandard", "gunicorn[gevent]"]
Expand Down

0 comments on commit 82823ab

Please sign in to comment.