Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

py-blue-cwl, py-entity-management, brainbuilder: Bump to py-blue-cwl 1.0.0 #2499

Merged
merged 5 commits into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
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
8 changes: 4 additions & 4 deletions bluebrain/repo-bluebrain/packages/brainbuilder/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
class Brainbuilder(PythonPackage):
"""Miscellaneous circuit building utilities"""

homepage = "https://bbpgitlab.epfl.ch/nse/brainbuilder/"
git = "ssh://git@bbpgitlab.epfl.ch/nse/brainbuilder.git"
homepage = "https://github.com/BlueBrain/brainbuilder"
git = "https://github.com/BlueBrain/brainbuilder.git"
pypi = "brainbuilder/brainbuilder-0.20.1.tar.gz"

version("develop", branch="main")
version("0.19.0", tag="brainbuilder-v0.19.0")
version("0.20.1", sha256="d46c3dc831dbac24a926a6e7b31a9eeea06bcc5fa500b84efb8153e27b56fac3")

depends_on("py-setuptools", type=("build", "run"))

Expand Down
8 changes: 7 additions & 1 deletion bluebrain/repo-bluebrain/packages/py-blue-cwl/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ class PyBlueCwl(PythonPackage):
git = "https://github.com/BlueBrain/blue-cwl.git"
pypi = "blue-cwl/blue_cwl-0.1.0.tar.gz"

version("1.0.0", sha256="b4456f36725713dbaf1b1b00d163615e1727367604c008f078fbeb01ea69975a")
version("0.1.0", sha256="90df1c6ef97777df04a0a18b6871057878da891edb5ba1b0fa94610bfd27e2aa")

depends_on("python@3.10:", type=("build", "run"))
Expand All @@ -29,12 +30,17 @@ class PyBlueCwl(PythonPackage):
depends_on("py-joblib", type=("build", "run"))

depends_on("py-libsonata", type=("build", "run"))
depends_on("py-entity-management@1.2.44:", type=("build", "run"))
depends_on("py-entity-management@1.4.1:", type=("build", "run"))
depends_on("py-fz-td-recipe", type=("build", "run"))
depends_on("py-pydantic", type=("build", "run"))
depends_on("py-morph-tool", type=("build", "run"))
depends_on("py-jsonschema", type=("build", "run"))
depends_on("py-luigi", type=("build", "run"))
depends_on("brainbuilder", type=("build", "run"))

# Visualization dependencies
depends_on("py-pydot", type=("build", "run"))
depends_on("py-matplotlib", type=("build", "run"))

@run_after("install")
@on_package_attributes(run_tests=True)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ class PyEntityManagement(PythonPackage):
git = "https://github.com/BlueBrain/entity-management.git"
pypi = "entity-management/entity_management-1.2.46.tar.gz"

version("1.4.1", sha256="3cdb51d658e36684f9b4c2591a91f6e9a849fd4dfb19df0262f0a0ad11c857fa")
version("1.2.46", sha256="0c3a3c1c0c9d47b47a2804746eefdbb26d5e707ac24f707ba8d42395c14eaa10")

depends_on("py-setuptools", type="build")
Expand Down
Loading