Skip to content

Commit

Permalink
Merge pull request #316957 from natsukium/opentelemetry/version-fix
Browse files Browse the repository at this point in the history
python311Packages.opentelemetry: fix version
  • Loading branch information
natsukium authored Jun 5, 2024
2 parents bc838ed + d349f8d commit deefec4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
pythonOlder,
hatchling,
opentelemetry-api,
opentelemetry-instrumentation,
opentelemetry-sdk,
opentelemetry-test-utils,
prometheus-client,
Expand All @@ -13,7 +14,9 @@
buildPythonPackage {
inherit (opentelemetry-api) src;
pname = "opentelemetry-exporter-prometheus";
version = "0.44b0";
# This package is in the same repository as `opentelemetry-api`,
# but its version is synchronized with `opentelemetry-instrumentation` in another repository.
version = opentelemetry-instrumentation.version;
pyproject = true;

disabled = pythonOlder "3.8";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@
pythonOlder,
hatchling,
opentelemetry-api,
opentelemetry-instrumentation,
pytestCheckHook,
}:

buildPythonPackage {
inherit (opentelemetry-api) src;
pname = "opentelemetry-semantic-conventions";
version = "0.44b0";
# This package is in the same repository as `opentelemetry-api`,
# but its version is synchronized with `opentelemetry-instrumentation` in another repository.
version = opentelemetry-instrumentation.version;
pyproject = true;

disabled = pythonOlder "3.8";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@
asgiref,
hatchling,
opentelemetry-api,
opentelemetry-instrumentation,
opentelemetry-sdk,
}:

buildPythonPackage {
inherit (opentelemetry-api) src;
pname = "opentelemetry-test-utils";
version = "0.44b0";
# This package is in the same repository as `opentelemetry-api`,
# but its version is synchronized with `opentelemetry-instrumentation` in another repository.
version = opentelemetry-instrumentation.version;
pyproject = true;

disabled = pythonOlder "3.8";
Expand Down

0 comments on commit deefec4

Please sign in to comment.