Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lock Dependencies Versions #29

Merged
merged 5 commits into from
Jun 28, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
add dependencies versions to pyproject.toml
  • Loading branch information
SerodioJ committed Jun 24, 2024
commit af9338ef2d755a68987a61f1972cf37b7c331357
48 changes: 27 additions & 21 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,37 +22,43 @@ readme="README.md"
exclude = ["tests/*", "docs/*"]

[tool.poetry.dependencies]
dacite = "*"
dask = "*"
dask_cuda = "*"
dask_jobqueue = "*"
dask_memusage = "*"
dask_ml = "*"
dask-pytorch-ddp = "*"
GPUtil = "*"
bokeh = "2.4.3"
charset-normalizer = "<3.0"
dacite = "1.8.1"
dask = "2023.3.2"
dask_cuda = "23.4.0"
dask_jobqueue = "0.8.2"
dask_memusage = "1.1"
dask_ml = "2023.3.24"
dask-pytorch-ddp = "0.2.2"
GPUtil = "1.4.0"
gdown = "^4.6"
graphviz = "*"
h5py = "*"
hdbscan = "*"
graphviz = "0.20.1"
h5py = "3.10.0"
hdbscan = "0.8.33"
ipympl = "*"
joblib = "1.1.1"
matplotlib = "*"
memray = "*"
networkx = "*"
numpy = "1.23.5"
ormsgpack = "*"
packaging = "*"
pandas = "1.5.2"
portalocker = "*"
protobuf = "~=3.20.1"
psutil = "*"
pyarrow = "*"
protobuf = "<=3.20.1"
psutil = "5.9.4"
pyarrow = "10.0.1.dev0+ga6eabc2b.d20230609"
python = "^3.8"
pytorch-lightning = "*"
scikit-learn = "*"
torchvision = "*"
xarray = "*"
xgboost = "*"
zarr = "*"
pytorch-lightning = "20220615"
scikit-learn = "1.2.0"
torchvision = "0.16.0a0"
tornado = "<6.2"
xarray = "2023.11.0"
xgboost = "1.7.5"
xpysom-dask = { git = "https://github.com/jcfaracco/xpysom-dask.git", tag = "v1.0.7.1" }
SerodioJ marked this conversation as resolved.
Show resolved Hide resolved
zarr = "2.16.1"

#xpysom = { git = "https://github.com/jcfaracco/xpysom/", branch = "dask2" }

[tool.poetry.group.dev.dependencies]
black = "*"
Expand Down