Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.
Closed
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
7 changes: 6 additions & 1 deletion .devfile/Containerfile.client
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ RUN dnf install -y make git && \
rm -rf /var/cache/dnf
COPY --from=uv /uv /uvx /bin/
ADD . /src
RUN make -C /src build
WORKDIR /src
RUN make sync
# remove the package dependency pinning for jumpstarter related packages
RUN uv run ./scripts/pin_release_versions.py --unpin
RUN make build



FROM quay.io/devfile/base-developer-image:ubi9-latest
Expand Down
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/

FROM builder AS wheels
ADD . /src
RUN make -C /src build
WORKDIR /src
RUN make sync
# remove the package dependency pinning for jumpstarter related packages
RUN uv run ./scripts/pin_release_versions.py --unpin
RUN make build

FROM product
RUN --mount=from=wheels,source=/src/dist,target=/dist \
Expand Down
10 changes: 6 additions & 4 deletions examples/automotive/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ name = "jumpstarter-example-automotive"
version = "0.1.0"
description = ""
authors = [
{ name = "Kirk Brauer", email = "kbrauer@hatci.com" },
{ name = "Nick Cao", email = "ncao@redhat.com" },
{ name = "Miguel Angel Ajo Pelayo", email = "majopela@redhat.com" },
{ name = "Kirk Brauer", email = "kbrauer@hatci.com" },
{ name = "Nick Cao", email = "ncao@redhat.com" },
{ name = "Miguel Angel Ajo Pelayo", email = "majopela@redhat.com" },
]
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11"
dependencies = ["jumpstarter"]
dependencies = [
"jumpstarter ~= 0.6",
]
18 changes: 9 additions & 9 deletions examples/soc-pytest/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ name = "jumpstarter-example-soc-pytest"
version = "0.1.0"
description = ""
authors = [
{ name = "Miguel Angel Ajo Pelayo", email = "majopela@redhat.com" },
{ name = "Kirk Brauer", email = "kbrauer@hatci.com" },
{ name = "Nick Cao", email = "ncao@redhat.com" },
{ name = "Miguel Angel Ajo Pelayo", email = "majopela@redhat.com" },
{ name = "Kirk Brauer", email = "kbrauer@hatci.com" },
{ name = "Nick Cao", email = "ncao@redhat.com" },
]
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11"
dependencies = [
"pytest>=8.3.2",
"jumpstarter",
"jumpstarter-testing",
"jumpstarter-imagehash",
"jumpstarter-driver-network",
"jumpstarter-driver-dutlink",
"pytest>=8.3.2",
"jumpstarter ~= 0.6",
"jumpstarter-testing ~= 0.6",
"jumpstarter-imagehash ~= 0.6",
"jumpstarter-driver-network ~= 0.6",
"jumpstarter-driver-dutlink ~= 0.6",
]

[tool.pytest.ini_options]
Expand Down
80 changes: 46 additions & 34 deletions packages/jumpstarter-all/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,54 +1,66 @@
[project]
name = "jumpstarter-all"
dynamic = ["version", "urls"]
dynamic = [
"version",
"urls",
]
description = "Jumpstarter meta-package which will install all packages"
authors = [{ name = "Miguel Angel Ajo", email = "majopela@redhat.com" }]
authors = [
{ name = "Miguel Angel Ajo", email = "majopela@redhat.com" },
]
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11"
dependencies = [
"jumpstarter",
"jumpstarter-cli",
"jumpstarter-cli-admin",
"jumpstarter-cli-common",
"jumpstarter-cli-driver",
"jumpstarter-driver-can",
"jumpstarter-driver-composite",
"jumpstarter-driver-corellium",
"jumpstarter-driver-dutlink",
"jumpstarter-driver-flashers",
"jumpstarter-driver-http",
"jumpstarter-driver-network",
"jumpstarter-driver-opendal",
"jumpstarter-driver-power",
"jumpstarter-driver-probe-rs",
"jumpstarter-driver-pyserial",
"jumpstarter-driver-qemu",
"jumpstarter-driver-raspberrypi",
"jumpstarter-driver-sdwire",
"jumpstarter-driver-shell",
"jumpstarter-driver-snmp",
"jumpstarter-driver-tftp",
"jumpstarter-driver-uboot",
"jumpstarter-driver-ustreamer",
"jumpstarter-driver-yepkit",
"jumpstarter-imagehash",
"jumpstarter-kubernetes",
"jumpstarter-protocol",
"jumpstarter-testing",
"jumpstarter ~= 0.6",
"jumpstarter-cli ~= 0.6",
"jumpstarter-cli-admin ~= 0.6",
"jumpstarter-cli-common ~= 0.6",
"jumpstarter-cli-driver ~= 0.6",
"jumpstarter-driver-can ~= 0.6",
"jumpstarter-driver-composite ~= 0.6",
"jumpstarter-driver-corellium ~= 0.6",
"jumpstarter-driver-dutlink ~= 0.6",
"jumpstarter-driver-flashers ~= 0.6",
"jumpstarter-driver-http ~= 0.6",
"jumpstarter-driver-network ~= 0.6",
"jumpstarter-driver-opendal ~= 0.6",
"jumpstarter-driver-power ~= 0.6",
"jumpstarter-driver-probe-rs ~= 0.6",
"jumpstarter-driver-pyserial ~= 0.6",
"jumpstarter-driver-qemu ~= 0.6",
"jumpstarter-driver-raspberrypi ~= 0.6",
"jumpstarter-driver-sdwire ~= 0.6",
"jumpstarter-driver-shell ~= 0.6",
"jumpstarter-driver-snmp ~= 0.6",
"jumpstarter-driver-tftp ~= 0.6",
"jumpstarter-driver-uboot ~= 0.6",
"jumpstarter-driver-ustreamer ~= 0.6",
"jumpstarter-driver-yepkit ~= 0.6",
"jumpstarter-imagehash ~= 0.6",
"jumpstarter-kubernetes ~= 0.6",
"jumpstarter-protocol ~= 0.6",
"jumpstarter-testing ~= 0.6",
]

[tool.hatch.build.targets.wheel]
packages = ["jumpstarter_all"]
packages = [
"jumpstarter_all",
]

[tool.hatch.metadata.hooks.vcs.urls]
Homepage = "https://jumpstarter.dev"
source_archive = "https://github.com/jumpstarter-dev/repo/archive/{commit_hash}.zip"

[tool.hatch.version]
source = "vcs"
raw-options = { 'root' = '../../' }

[tool.hatch.version.raw-options]
root = "../../"

[build-system]
requires = ["hatchling", "hatch-vcs"]
requires = [
"hatchling",
"hatch-vcs",
]
build-backend = "hatchling.build"
41 changes: 28 additions & 13 deletions packages/jumpstarter-cli-admin/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,35 +1,50 @@
[project]
name = "jumpstarter-cli-admin"
dynamic = ["version", "urls"]
dynamic = [
"version",
"urls",
]
description = ""
authors = [{ name = "Kirk Brauer", email = "kbrauer@hatci.com" }]
authors = [
{ name = "Kirk Brauer", email = "kbrauer@hatci.com" },
]
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11"
dependencies = ["jumpstarter-cli-common", "jumpstarter-kubernetes"]

[dependency-groups]
dev = [
"pytest>=8.3.2",
"pytest-anyio>=0.0.0",
"pytest-asyncio>=0.0.0",
"pytest-cov>=5.0.0",
dependencies = [
"jumpstarter-cli-common ~= 0.6",
"jumpstarter-kubernetes ~= 0.6",
]

[project.scripts]
jmp-admin = "jumpstarter_cli_admin:admin"

[dependency-groups]
dev = [
"pytest>=8.3.2",
"pytest-anyio>=0.0.0",
"pytest-asyncio>=0.0.0",
"pytest-cov>=5.0.0",
]

[tool.hatch.build.targets.wheel]
packages = ["jumpstarter_cli_admin"]
packages = [
"jumpstarter_cli_admin",
]

[tool.hatch.metadata.hooks.vcs.urls]
Homepage = "https://jumpstarter.dev"
source_archive = "https://github.com/jumpstarter-dev/repo/archive/{commit_hash}.zip"

[tool.hatch.version]
source = "vcs"
raw-options = { 'root' = '../../' }

[tool.hatch.version.raw-options]
root = "../../"

[build-system]
requires = ["hatchling", "hatch-vcs"]
requires = [
"hatchling",
"hatch-vcs",
]
build-backend = "hatchling.build"
44 changes: 28 additions & 16 deletions packages/jumpstarter-cli-common/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,40 +1,52 @@
[project]
name = "jumpstarter-cli-common"
dynamic = ["version", "urls"]
dynamic = [
"version",
"urls",
]
description = ""
authors = [{ name = "Kirk Brauer", email = "kbrauer@hatci.com" }]
authors = [
{ name = "Kirk Brauer", email = "kbrauer@hatci.com" },
]
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11"
dependencies = [
"jumpstarter",
"pydantic>=2.8.2",
"asyncclick>=8.1.7.2",
"authlib>=1.4.1",
"truststore>=0.10.1",
"joserfc>=1.0.3",
"yarl>=1.18.3",
"jumpstarter ~= 0.6",
"pydantic>=2.8.2",
"asyncclick>=8.1.7.2",
"authlib>=1.4.1",
"truststore>=0.10.1",
"joserfc>=1.0.3",
"yarl>=1.18.3",
]

[dependency-groups]
dev = [
"pytest>=8.3.2",
"pytest-anyio>=0.0.0",
"pytest-asyncio>=0.0.0",
"pytest-cov>=5.0.0",
"pytest>=8.3.2",
"pytest-anyio>=0.0.0",
"pytest-asyncio>=0.0.0",
"pytest-cov>=5.0.0",
]

[tool.hatch.build.targets.wheel]
packages = ["jumpstarter_cli_common"]
packages = [
"jumpstarter_cli_common",
]

[tool.hatch.metadata.hooks.vcs.urls]
Homepage = "https://jumpstarter.dev"
source_archive = "https://github.com/jumpstarter-dev/repo/archive/{commit_hash}.zip"

[tool.hatch.version]
source = "vcs"
raw-options = { 'root' = '../../' }

[tool.hatch.version.raw-options]
root = "../../"

[build-system]
requires = ["hatchling", "hatch-vcs"]
requires = [
"hatchling",
"hatch-vcs",
]
build-backend = "hatchling.build"
43 changes: 28 additions & 15 deletions packages/jumpstarter-cli-driver/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,39 +1,52 @@
[project]
name = "jumpstarter-cli-driver"
dynamic = ["version", "urls"]
dynamic = [
"version",
"urls",
]
description = ""
authors = [
{ name = "Nick Cao", email = "ncao@redhat.com" },
{ name = "Miguel Angel Ajo Pelayo", email = "majopela@redhat.com" },
{ name = "Kirk Brauer", email = "kbrauer@hatci.com" },
{ name = "Nick Cao", email = "ncao@redhat.com" },
{ name = "Miguel Angel Ajo Pelayo", email = "majopela@redhat.com" },
{ name = "Kirk Brauer", email = "kbrauer@hatci.com" },
]
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11"
dependencies = ["jumpstarter-cli-common", "asyncclick>=8.1.7.2"]

[dependency-groups]
dev = [
"pytest>=8.3.2",
"pytest-anyio>=0.0.0",
"pytest-asyncio>=0.0.0",
"pytest-cov>=5.0.0",
dependencies = [
"jumpstarter-cli-common ~= 0.6",
"asyncclick>=8.1.7.2",
]

[project.scripts]
jmp-driver = "jumpstarter_cli_driver:driver"

[dependency-groups]
dev = [
"pytest>=8.3.2",
"pytest-anyio>=0.0.0",
"pytest-asyncio>=0.0.0",
"pytest-cov>=5.0.0",
]

[tool.hatch.build.targets.wheel]
packages = ["jumpstarter_cli_driver"]
packages = [
"jumpstarter_cli_driver",
]

[tool.hatch.metadata.hooks.vcs.urls]
Homepage = "https://jumpstarter.dev"
source_archive = "https://github.com/jumpstarter-dev/repo/archive/{commit_hash}.zip"

[tool.hatch.version]
source = "vcs"
raw-options = { 'root' = '../../' }

[tool.hatch.version.raw-options]
root = "../../"

[build-system]
requires = ["hatchling", "hatch-vcs"]
requires = [
"hatchling",
"hatch-vcs",
]
build-backend = "hatchling.build"
Loading
Loading