Skip to content

Commit

Permalink
Unpin semver dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kbolashev committed Sep 3, 2024
1 parent 20d334f commit cad0e05
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,25 +28,24 @@ def get_version(rel_path: str) -> str:
"fusepy>=3",
"appdirs>=1.4.4",
"click>=8.0.4",
"httpx~=0.23.0",
"httpx>=0.23.0",
"GitPython>=3.1.29",
"rich~=13.1.0",
"rich>=13.1.0",
# Need to keep dacite version in lockstep with voxel, otherwise stuff breaks on their end
"dacite~=1.6.0",
"tenacity~=8.2.2",
"tenacity>=8.2.2",
"gql[requests]",
"dataclasses-json",
"pandas",
"treelib~=1.6.4",
"pathvalidate~=3.0.0",
"treelib>=1.6.4",
"pathvalidate>=3.0.0",
"python-dateutil",
"tenacity~=8.2.3",
"boto3",
"dagshub-annotation-converter>=0.1.0",
]

extras_require = {
"jupyter": ["rich[jupyter]~=13.1.0"],
"jupyter": ["rich[jupyter]>=13.1.0"],
"fuse": ["fusepy>=3"],
}

Expand Down

0 comments on commit cad0e05

Please sign in to comment.