otlp-test-data 1.0.0__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.
@@ -3,6 +3,7 @@ on:
3
3
  branches: [main]
4
4
  pull_request:
5
5
  branches: [main]
6
+ workflow_dispatch:
6
7
 
7
8
  jobs:
8
9
  ci:
@@ -10,7 +11,7 @@ jobs:
10
11
  strategy:
11
12
  fail-fast: false
12
13
  matrix:
13
- 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]
14
15
  dep-versions: [--frozen, "--resolution lowest", "--resolution highest --upgrade"]
15
16
  steps:
16
17
  - uses: actions/checkout@v4
@@ -25,6 +26,7 @@ jobs:
25
26
  uv build
26
27
 
27
28
  release:
29
+ if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
28
30
  needs: ci
29
31
  runs-on: ubuntu-latest
30
32
  environment: release
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: otlp-test-data
3
- Version: 1.0.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.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"