Skip to content

Commit

Permalink
Fix constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
adrien-berchet committed Aug 31, 2023
1 parent b71b789 commit 0d0d75a
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 23 deletions.
20 changes: 10 additions & 10 deletions bluebrain/repo-bluebrain/packages/py-diameter-synthesis/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ class PyDiameterSynthesis(PythonPackage):
depends_on("py-setuptools-scm", type="build")

depends_on("py-click@7.0:", type=("build", "run"))
depends_on("py-numpy@1.33.0:", type=("build", "run"), when="@0.5.3:")
depends_on("py-numpy@1.15.0:", type=("build", "run"), when="@:0.5.3")
depends_on("py-scipy@1.6:", type=("build", "run"), when="@0.5.3:")
depends_on("py-scipy@0.13.3:", type=("build", "run"), when="@:0.5.3")
depends_on("py-matplotlib@3.4:", type=("build", "run"), when="@0.5.3:")
depends_on("py-matplotlib@2.2:", type=("build", "run"), when="@:0.5.3")
depends_on("py-pandas@1.0.5:", type=("build", "run"), when="@0.5.3:")
depends_on("py-pandas@0.24:", type=("build", "run"), when="@:0.4.1")
depends_on("py-numpy@1.33.0:", type=("build", "run"), when="@0.5:")
depends_on("py-numpy@1.15.0:", type=("build", "run"), when="@:0.4")
depends_on("py-scipy@1.6:", type=("build", "run"), when="@0.5:")
depends_on("py-scipy@0.13.3:", type=("build", "run"), when="@:0.4")
depends_on("py-matplotlib@3.4:", type=("build", "run"), when="@0.5:")
depends_on("py-matplotlib@2.2:", type=("build", "run"), when="@:0.4")
depends_on("py-pandas@1.0.5:", type=("build", "run"), when="@0.5:")
depends_on("py-pandas@0.24:", type=("build", "run"), when="@:0.4")
depends_on("py-neurom@3.0:3", type=("build", "run"))
depends_on("py-morphio@3.3.4:", type=("build", "run"), when="@0.4.1:")
depends_on("py-morphio@2.3.4:", type=("build", "run"), when="@:0.5.3")
depends_on("py-morphio@3.3.4:", type=("build", "run"), when="@0.5:")
depends_on("py-morphio@2.3.4:", type=("build", "run"), when="@:0.4")
depends_on("py-jsonschema@3:", type=("build", "run"))
2 changes: 1 addition & 1 deletion bluebrain/repo-bluebrain/packages/py-morph-tool/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class PyMorphTool(PythonPackage):

homepage = "https://github.com/BlueBrain/morph-tool"
git = "https://github.com/BlueBrain/morph-tool.git"
pypi = "morph-tool/morph-tool-2.4.1.tar.gz"
pypi = "morph-tool/morph-tool-2.9.1.tar.gz"

version("develop", branch="master")
version("2.9.1", sha256="305e9456c8047726588b23dfa070eb95ccbe5573e9fea3e0a83dc93eacdf61dc")
Expand Down
2 changes: 1 addition & 1 deletion bluebrain/repo-bluebrain/packages/py-neurots/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class PyNeurots(PythonPackage):
depends_on("py-setuptools-scm", type="build")

depends_on("py-diameter-synthesis@0.5.4:", type=("build", "run"), when="@3.4:")
depends_on("py-diameter-synthesis@0.5.3:", type=("build", "run"), when="@3.3.1:")
depends_on("py-diameter-synthesis@0.5.3:", type=("build", "run"), when="@:3.3.1")
depends_on("py-matplotlib@1.3.1:", type=("build", "run"))
depends_on("py-tmd@2.2.0:", type=("build", "run"))
depends_on("py-morphio@3.0:3.999", type=("build", "run"))
Expand Down
20 changes: 10 additions & 10 deletions bluebrain/repo-bluebrain/packages/py-region-grower/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,28 +22,28 @@ class PyRegionGrower(PythonPackage):

depends_on("py-attrs@19.3.0:", type=("build", "run"))
depends_on("py-click@8.0:", type=("build", "run"), when="@1:")
depends_on("py-click@7.0:", type=("build", "run"), when="@0.3.1:0")
depends_on("py-dask+dataframe+distributed@2023.3.2:", type=("build", "run"), when="@1:")
depends_on("py-dask+dataframe+distributed@2021.9:", type=("build", "run"), when="@0.4.3")
depends_on("py-click@7.0:", type=("build", "run"), when="@0.3.1:0.4.3")
depends_on(
"py-dask+dataframe+distributed@2.15.0:2021.8.0,2021.9.0:",
type=("build", "run"),
when="@0.3.1",
)
depends_on("py-diameter-synthesis@0.5.4:1", type=("build", "run"), when="@1.1.0:")
depends_on("py-diameter-synthesis@0.5.3:1", type=("build", "run"), when="@0.4.3:1.0")
depends_on("py-dask+dataframe+distributed@2021.9:", type=("build", "run"), when="@0.4.3")
depends_on("py-dask+dataframe+distributed@2023.3.2:", type=("build", "run"), when="@1:")
depends_on("py-diameter-synthesis@0.4.1", type=("build", "run"), when="@0.3.1")
depends_on("py-morphio@3.3.4:3", type=("build", "run"), when="@1:")
depends_on("py-morphio@3.3.3:3", type=("build", "run"), when="@0.4.3")
depends_on("py-diameter-synthesis@0.5.3:1", type=("build", "run"), when="@0.4.3:1.0")
depends_on("py-diameter-synthesis@0.5.4:1", type=("build", "run"), when="@1.1:")
depends_on("py-morphio@3.0:3", type=("build", "run"), when="@0.3.1")
depends_on("py-morphio@3.3.3:3", type=("build", "run"), when="@0.4.3")
depends_on("py-morphio@3.3.4:3", type=("build", "run"), when="@1:")
depends_on("py-morph-tool@2.9.0:2 +neuron", type=("build", "run"))
depends_on("py-neuroc@0.2.8:", type=("build", "run"))
depends_on("py-neurom@3.0:3", type=("build", "run"))
depends_on("py-neurots@3.4.0:3", type=("build", "run"), when="@1:")
depends_on("py-neurots@3.3.1", type=("build", "run"), when="@0.4.3")
depends_on("py-neurots@3.1:3.2", type=("build", "run"), when="@0.3.1")
depends_on("py-neurots@3.3.1", type=("build", "run"), when="@0.4.3")
depends_on("py-neurots@3.4.0:3", type=("build", "run"), when="@1:")
depends_on("py-tqdm@4.28.1:", type=("build", "run"))
depends_on("py-voxcell@3.1.1:3", type=("build", "run"), when="@0.4.3:")
depends_on("py-voxcell@2.7:3.0", type=("build", "run"), when="@0.3.1")
depends_on("py-voxcell@3.1.1:3", type=("build", "run"), when="@0.4.3:")
depends_on("py-dask-mpi@2.0.0:", type=("build", "run"))
depends_on("py-mpi4py@3.0.3:", type=("build", "run"))
3 changes: 2 additions & 1 deletion bluebrain/repo-bluebrain/packages/py-tmd/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ class PyTmd(PythonPackage):
"""Python library for the topological analysis of neurons"""

homepage = "https://github.com/BlueBrain/TMD"
pypi = "tmd/tmd-2.0.9.tar.gz"
pypi = "tmd/tmd-2.3.1.tar.gz"

version("2.3.1", sha256="b8c4d5398ae269ba489e659b5ba33971b26f1df2e295429360d040b541cd58a8")
version("2.2.0", sha256="a5e7753fbd7f2b0ef8a5271030cf172bdefba9d215f5147cf90318641d803bdb")
version("2.0.11", sha256="ba19167d19eb2132af766b760a6f09f423abbdcf871c23c2bfdf8c9064ba888e")
version("2.0.9", sha256="9bfb4b014e2c735c9db5f3ee61e4ccdbac29248f608ba49a43d862e4835b88a5")
Expand Down

0 comments on commit 0d0d75a

Please sign in to comment.