Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class PyAstSerialize(PythonPackage):

license("MIT")

version("0.6.0", sha256="aadd3ffcf4858c9726bf3515f7b199c7eadbe504f96028e4a87172c0da65a8fe")
version("0.5.0", sha256="5880091bfe6f4f986f22866375c2e884843e7a0b6343ae41aeea659613d879b6")

depends_on("py-maturin@1.9", type="build")
1 change: 1 addition & 0 deletions repos/spack_repo/builtin/packages/py_librt/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class PyLibrt(PythonPackage):

license("MIT AND PSF-2.0")

version("0.15.0", sha256="4e66cbe84437497d951b799d3e1551291b6fb3d643820a7014b3655d57a59162")
version("0.11.0", sha256="075dc3ef4458a278e0195cbf6ac9d38808d9b906c5a6c7f7f79c3888276a3fb1")
version("0.9.0", sha256="a0951822531e7aee6e0dfb556b30d5ee36bbe234faf60c20a16c01be3530869d")
version("0.6.3", sha256="c724a884e642aa2bbad52bb0203ea40406ad742368a5f90da1b220e970384aae")
Expand Down
5 changes: 4 additions & 1 deletion repos/spack_repo/builtin/packages/py_mypy/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ class PyMypy(PythonPackage):

license("MIT AND PSF-2.0", checked_by="tgamblin")

version("2.3.1", sha256="47c1b1207258513a9d93495f69c8be9de73916186f0e52703e8c461b7a623419")
version("2.1.0", sha256="81e76ad12c2d804512e9b13240d1588316531bfba07558286078bfbce9613633")
version("1.20.1", sha256="6fc3f4ecd52de81648fed1945498bf42fa2993ddfad67c9056df36ae5757f804")
version("1.19.0", sha256="f6b874ca77f733222641e5c46e4711648c4037ea13646fd0cdc814c2eaec2528")
Expand Down Expand Up @@ -96,10 +97,12 @@ class PyMypy(PythonPackage):
depends_on("py-tomli@1.1:", when="@0.950: ^python@:3.10")
depends_on("py-tomli@1.1:", when="@0.930:0.949")
depends_on("py-tomli@1.1:2", when="@0.920:0.929")
depends_on("py-librt@0.13.0:", when="@2.3.1:")
depends_on("py-librt@0.11:", when="@2.1:")
depends_on("py-librt@0.8.0:", when="@1.20.1:")
depends_on("py-librt@0.6.2:", when="@1.19:")
depends_on("py-ast-serialize@0.3:0", when="@2:")
depends_on("py-ast-serialize@0.3:0", when="@2:2.1")
depends_on("py-ast-serialize@0.6:0", when="@2.3.1:")

# Historical dependencies
depends_on("py-types-typed-ast@1.5.8.5:1.5", when="@1.2:1.4")
Expand Down
28 changes: 21 additions & 7 deletions repos/spack_repo/builtin/packages/py_schema_salad/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ class PySchemaSalad(PythonPackage):
pypi = "schema-salad/schema_salad-8.7.20241021092521.tar.gz"

license("Apache-2.0")
version(
"8.10.20260825112551",
sha256="426af8bae86b1b8026469968bcd0802e6c61fd6c44c6b1f77d48467164a6ac74",
)
version(
"8.9.20260417192335",
sha256="5ad4599231dcf7ae8ae2fc841a677db9c120544b36a6d6347ae87875b2c1b083",
Expand All @@ -40,14 +44,21 @@ class PySchemaSalad(PythonPackage):
depends_on("py-setuptools@50:", when="@8.4.20231117150958:", type="build")

depends_on("py-requests@1:", type=("build", "run"))
depends_on("py-ruamel-yaml@0.17.6:0.17.21", type=("build", "run"))
depends_on("py-ruamel-yaml@0.17.6:0.18", when="@8.4.20231113094720:", type=("build", "run"))
depends_on("py-ruamel-yaml@0.17.6:0.17.21", type=("build", "run"), when="@8.3.20221209165047")
depends_on(
"py-ruamel-yaml@0.17.6:0.18",
when="@8.4.20231113094720:8.8.20250205075315",
type=("build", "run"),
)
depends_on("py-ruamel-yaml@0.17.6:0.19", when="@8.9.20260327095315:", type=("build", "run"))
depends_on("py-rdflib@4.2.2:6", type=("build", "run"))
depends_on("py-rdflib@4.2.2:6", type=("build", "run"), when="@8.3.20221209165047")
depends_on("py-rdflib@4.2.2:7", when="@8.4.20230927144413:", type=("build", "run"))
depends_on("py-mistune@2.0.3:2.0", type=("build", "run"))
depends_on("py-mistune@3.0", type=("build", "run"), when="@8.5.20240311110950:")
depends_on("py-mistune@3.0.1:3.2", type=("build", "run"), when="@8.9.20260417192335:")
depends_on("py-mistune@2.0.3:2.0", type=("build", "run"), when="@8.3.20221209165047")
depends_on(
"py-mistune@3:3.1", type=("build", "run"), when="@8.7.20241021092521:8.8.20250205075315"
)
depends_on("py-mistune@3:3.2", type=("build", "run"), when="@8.9.20260417192335")
depends_on("py-mistune@3.3", type=("build", "run"), when="@8.10.20260825112551:")
depends_on(
"py-cachecontrol@0.11.7:0.12+filecache", when="@:8.7.20240718183047", type=("build", "run")
)
Expand All @@ -67,11 +78,14 @@ class PySchemaSalad(PythonPackage):
depends_on("py-mypy@1.12.1", when="@8.7.20241021092521", type="build")
depends_on("py-mypy@1.15.0", when="@8.8.20250205075315", type="build")
depends_on("py-mypy@1.20.1", when="@8.9.20260417192335", type="build")
depends_on("py-mypy@2.3.1", when="@8.8.10.20260825112551:", type="build")
depends_on("py-black@19.10b0:", type="build")
depends_on(
"py-black@19.10b0:24.10", when="@8.7.20241021092521:8.8.20250205075315", type="build"
)
depends_on("py-black@19.10b0:26.3", type="build", when="@8.9.20260417192335:")
depends_on("py-black@19.10b0:26.3", type="build", when="@:8.9.20260417192335")
depends_on("py-black@19.10b0:26.4", type="build", when="@8.10.20260825112551:")

depends_on("py-types-pkg-resources", when="@:8.4.20231117150958", type="build")
depends_on("py-types-requests", type="build")
depends_on("py-types-dataclasses", type="build")
Expand Down
Loading