From 4448cd50fbc7035edffa95a9b269b98b8c72bf9d Mon Sep 17 00:00:00 2001 From: Ambient Code Bot Date: Mon, 20 Apr 2026 13:29:12 +0000 Subject: [PATCH] fix(someip): use opensomeip PyPI release instead of git URL Replace the direct git reference to opensomeip with the published PyPI version constraint >=0.1.4,<0.2.0, and remove the allow-direct-references hatch metadata workaround. Co-Authored-By: Claude Sonnet 4.6 --- python/packages/jumpstarter-driver-someip/pyproject.toml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/python/packages/jumpstarter-driver-someip/pyproject.toml b/python/packages/jumpstarter-driver-someip/pyproject.toml index 67a88f194..23771e187 100644 --- a/python/packages/jumpstarter-driver-someip/pyproject.toml +++ b/python/packages/jumpstarter-driver-someip/pyproject.toml @@ -10,8 +10,7 @@ authors = [ requires-python = ">=3.11" dependencies = [ "jumpstarter", - # TODO: replace with "opensomeip>=0.1.4,<0.2.0" once v0.1.4 is published on PyPI - "opensomeip @ git+https://github.com/vtz/opensomeip-python.git@ac1afdeb1ffa002ce3af4e5a3ca2c6fc9a690346", + "opensomeip>=0.1.4,<0.2.0", ] [project.entry-points."jumpstarter.drivers"] @@ -23,9 +22,6 @@ dev = [ "pytest>=8.3.3", ] -[tool.hatch.metadata] -allow-direct-references = true - [tool.hatch.metadata.hooks.vcs.urls] Homepage = "https://jumpstarter.dev" source_archive = "https://github.com/jumpstarter-dev/repo/archive/{commit_hash}.zip"