File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ packages = [{ include = "zeno_client" }]
10
10
[tool .poetry .dependencies ]
11
11
pandas = " >=1.4.3"
12
12
pyarrow = " >=6.0.0"
13
- python = " >=3.10 "
13
+ python = " >=3.8 "
14
14
pydantic = " >=1.0"
15
15
requests = " >=2.20.0"
16
16
arrow-json = " ^0.9.0"
Original file line number Diff line number Diff line change 1
1
"""Functions to upload data to Zeno's backend."""
2
+
2
3
import io
3
4
import json
4
5
import re
@@ -305,10 +306,10 @@ def create_project(
305
306
* ,
306
307
name : str ,
307
308
view : Union [str , Dict ] = "" ,
308
- description : str | None = None ,
309
+ description : Optional [ str ] = None ,
309
310
metrics : List [ZenoMetric ] = [],
310
- samples_per_page : int | None = None ,
311
- public : bool | None = None ,
311
+ samples_per_page : Optional [ int ] = None ,
312
+ public : Optional [ bool ] = None ,
312
313
) -> ZenoProject :
313
314
"""Creates an empty project in Zeno's backend.
314
315
You can’t perform that action at this time.
0 commit comments