Skip to content

Commit 58dfc15

Browse files
authored
ENH: Compatible with new restful api (#12)
* add fields.py * fix
1 parent 8f227f6 commit 58dfc15

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -145,4 +145,5 @@ asv/results
145145

146146
# these files are from third_party/inference, so git does not need to record them
147147
xinference_client/client
148-
xinference_client/types.py
148+
xinference_client/types.py
149+
xinference_client/fields.py

setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ packages = find:
2626
install_requires =
2727
requests
2828
typing-extensions
29+
pydantic<2
2930

3031
[options.packages.find]
3132
exclude =

setup.py

+7
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,13 @@ def symlink_client():
117117
assert os.path.exists(types_file)
118118
os.symlink(types_file, dst_types_file, target_is_directory=False)
119119

120+
fields_file = os.path.join(xinference_root, "fields.py")
121+
dst_fields_file = os.path.join(dst_root, "fields.py")
122+
if os.path.exists(dst_fields_file):
123+
os.unlink(dst_fields_file)
124+
assert os.path.exists(fields_file)
125+
os.symlink(fields_file, dst_fields_file, target_is_directory=False)
126+
120127

121128
setup_options = dict(
122129
version=versioneer.get_version(),

third_party/inference

Submodule inference updated 54 files

0 commit comments

Comments
 (0)