Skip to content
Merged
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
15 changes: 14 additions & 1 deletion packages/pyrobird/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,26 @@ class Pyrobird(PythonPackage):

license("LGPL-3.0-or-later", checked_by="wdconinc")

version("0.2.6", sha256="aecdfbdcf21260cfa3db3b1350a08277a83097508a9d5f406aff61a0748c97ff")
version("0.2.4", sha256="e75a4d20e4c35f30d6a60ce70a64872ade8cccddf7930cb5cca771b1d8f6da1d")
version("0.2.3", sha256="94115a4180a46fc0c4660c7d74c138bac32b217ebafdbff5941311d038a7e98d")
version("0.2.2", sha256="b1cf4ed69da590e42466c07ea815166fecb88951166b9015c981487de236c69d")
version("0.2.1", sha256="b292217eb93d03b82128eebb066dc4520ccdf30fd8f8a4bf013c6d5cc1050869")
version("0.2.0", sha256="d93508812c963627c5c153ebb58c45d29eca9646b644bab138d5b79c68729536")
version("0.1.27", sha256="cd359b7bb795a533aee9369a46579cb753004654883d3892c2fd76c9d4c35343")
version("0.1.24", sha256="f6ab7197aacc6615024bb644b21dc8a35f9a6fb39688a59745f0ad360f82e1ce")
version("0.1.23", sha256="ebc122af0b574e6f1a10831c9577084335c6674ca9c5b6fcb58b4ed26ea72c59")

variant("test", default=False, description="Enable test functionality")
variant("batch", default=False, description="Enable batch functionality")
variant("xrootd", default=False, description="Enable XRootD functionality")

depends_on("py-hatchling", type="build")
with when("@0.2:"):
depends_on("py-setuptools@61:", type="build")
depends_on("py-wheel", type="build")
with when("@0.1"):
Copy link

Copilot AI Dec 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version specifier @0.1 only matches exactly version 0.1.0, not the 0.1.x series (0.1.23, 0.1.24, 0.1.27). This means py-hatchling won't be a build dependency for any of the actual 0.1.x versions in this package. The correct syntax should be @:0.1 to match all versions up to and including 0.1.x, or more explicitly @0.1.0:0.1 to match the 0.1.x series.

Copilot uses AI. Check for mistakes.
depends_on("py-hatchling", type="build")

depends_on("py-click", type=("build", "run"))
depends_on("py-rich", type=("build", "run"))
depends_on("py-pyyaml", type=("build", "run"))
Expand Down