otlp-test-data 1.0.1__tar.gz → 1.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {otlp_test_data-1.0.1 → otlp_test_data-1.0.2}/.github/workflows/ci.yaml +2 -1
- {otlp_test_data-1.0.1 → otlp_test_data-1.0.2}/PKG-INFO +1 -2
- {otlp_test_data-1.0.1 → otlp_test_data-1.0.2}/pyproject.toml +3 -4
- otlp_test_data-1.0.2/uv.lock +1026 -0
- otlp_test_data-1.0.1/uv.lock +0 -807
- {otlp_test_data-1.0.1 → otlp_test_data-1.0.2}/.github/workflows/psr.yaml +0 -0
- {otlp_test_data-1.0.1 → otlp_test_data-1.0.2}/.gitignore +0 -0
- {otlp_test_data-1.0.1 → otlp_test_data-1.0.2}/.pre-commit-config.yaml +0 -0
- {otlp_test_data-1.0.1 → otlp_test_data-1.0.2}/changelog.md +0 -0
- {otlp_test_data-1.0.1 → otlp_test_data-1.0.2}/otlp_test_data/__init__.py +0 -0
- {otlp_test_data-1.0.1 → otlp_test_data-1.0.2}/otlp_test_data/py.typed +0 -0
- {otlp_test_data-1.0.1 → otlp_test_data-1.0.2}/readme.md +0 -0
- {otlp_test_data-1.0.1 → otlp_test_data-1.0.2}/test/test_repeatable.py +0 -0
- {otlp_test_data-1.0.1 → otlp_test_data-1.0.2}/test/test_smoke.py +0 -0
|
@@ -11,7 +11,7 @@ jobs:
|
|
|
11
11
|
strategy:
|
|
12
12
|
fail-fast: false
|
|
13
13
|
matrix:
|
|
14
|
-
python-version: [3.8, 3.9, "3.10", 3.11, 3.12, 3.13, 3.13t, 3.14]
|
|
14
|
+
python-version: [3.8, 3.9, "3.10", 3.11, 3.12, 3.13, 3.13t, 3.14, 3.14t, 3.15, 3.15t]
|
|
15
15
|
dep-versions: [--frozen, "--resolution lowest", "--resolution highest --upgrade"]
|
|
16
16
|
steps:
|
|
17
17
|
- uses: actions/checkout@v4
|
|
@@ -26,6 +26,7 @@ jobs:
|
|
|
26
26
|
uv build
|
|
27
27
|
|
|
28
28
|
release:
|
|
29
|
+
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
|
|
29
30
|
needs: ci
|
|
30
31
|
runs-on: ubuntu-latest
|
|
31
32
|
environment: release
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: otlp-test-data
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: Produces OTLP data using OTEL instrumentation
|
|
5
5
|
Project-URL: Repository, https://github.com/dimaqq/otlp-test-data
|
|
6
6
|
Project-URL: Issues, https://github.com/dimaqq/otlp-test-data/issues
|
|
@@ -28,7 +28,6 @@ Classifier: Topic :: Software Development :: Testing
|
|
|
28
28
|
Classifier: Topic :: Software Development :: Testing :: Traffic Generation
|
|
29
29
|
Requires-Python: >=3.8
|
|
30
30
|
Requires-Dist: freezegun~=1.5
|
|
31
|
-
Requires-Dist: grpcio<2.0.0,>=1.66.2; python_version >= '3.13'
|
|
32
31
|
Requires-Dist: opentelemetry-api~=1.30
|
|
33
32
|
Requires-Dist: opentelemetry-exporter-otlp-proto-http~=1.30
|
|
34
33
|
Requires-Dist: opentelemetry-exporter-otlp~=1.30
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "otlp-test-data"
|
|
3
|
-
version = "1.0.
|
|
3
|
+
version = "1.0.2"
|
|
4
4
|
description = "Produces OTLP data using OTEL instrumentation"
|
|
5
5
|
requires-python = ">=3.8"
|
|
6
6
|
license = {text = "Apache License (2.0)"}
|
|
@@ -33,10 +33,9 @@ dependencies = [
|
|
|
33
33
|
"opentelemetry-api ~= 1.30",
|
|
34
34
|
"opentelemetry-exporter-otlp ~= 1.30",
|
|
35
35
|
"opentelemetry-exporter-otlp-proto-http ~= 1.30",
|
|
36
|
-
# Work around https://github.com/grpc/grpc/issues/38790
|
|
37
|
-
# grpcio is a transient dep of exporters above
|
|
38
|
-
"grpcio >= 1.66.2, < 2.0.0; python_version >= '3.13'",
|
|
39
36
|
]
|
|
37
|
+
[tool.uv]
|
|
38
|
+
exclude-dependencies = ["grpcio"]
|
|
40
39
|
|
|
41
40
|
[project.urls]
|
|
42
41
|
"Repository" = "https://github.com/dimaqq/otlp-test-data"
|