File tree Expand file tree Collapse file tree 1 file changed +19
-2
lines changed
Expand file tree Collapse file tree 1 file changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -40,14 +40,28 @@ dev = [
4040 " pyfakefs" ,
4141 " requests_mock==1.11.0" ,
4242 " ruff" ,
43- " vcrpy>=6.0.0; python_version >= '3.8'" ,
43+ " vcrpy>=6.0.0,<7.0.0; python_version >= '3.8'" ,
44+ " urllib3<2.0.0; python_version >= '3.8'" , # Required for vcrpy compatibility
4445 " python-dotenv"
45- ]
46+ ]
4647ci = [
4748 " tach~=0.9" ,
4849]
4950
5051[project .optional-dependencies ]
52+ dev = [
53+ " pytest==7.4.0" ,
54+ " pytest-depends" ,
55+ " pytest-asyncio" ,
56+ " pytest-vcr" ,
57+ " pytest-mock" ,
58+ " pyfakefs" ,
59+ " requests_mock==1.11.0" ,
60+ " ruff" ,
61+ " vcrpy>=6.0.0,<7.0.0; python_version >= '3.8'" ,
62+ " urllib3<2.0.0; python_version >= '3.8'" , # Required for vcrpy compatibility
63+ " python-dotenv"
64+ ]
5165langchain = [
5266 " langchain==0.2.14; python_version >= '3.8.1'"
5367]
@@ -121,3 +135,6 @@ exclude = [
121135
122136[tool .setuptools ]
123137packages = [" agentops" ]
138+
139+ [tool .uv ]
140+ default-groups = [" dev" ]
You can’t perform that action at this time.
0 commit comments