otlp-test-data 0.12.0__tar.gz → 1.0.1__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-0.12.0 → otlp_test_data-1.0.1}/.github/workflows/ci.yaml +2 -1
- {otlp_test_data-0.12.0 → otlp_test_data-1.0.1}/PKG-INFO +3 -2
- {otlp_test_data-0.12.0 → otlp_test_data-1.0.1}/pyproject.toml +3 -4
- {otlp_test_data-0.12.0 → otlp_test_data-1.0.1}/uv.lock +443 -358
- {otlp_test_data-0.12.0 → otlp_test_data-1.0.1}/.github/workflows/psr.yaml +0 -0
- {otlp_test_data-0.12.0 → otlp_test_data-1.0.1}/.gitignore +0 -0
- {otlp_test_data-0.12.0 → otlp_test_data-1.0.1}/.pre-commit-config.yaml +0 -0
- {otlp_test_data-0.12.0 → otlp_test_data-1.0.1}/changelog.md +0 -0
- {otlp_test_data-0.12.0 → otlp_test_data-1.0.1}/otlp_test_data/__init__.py +0 -0
- {otlp_test_data-0.12.0 → otlp_test_data-1.0.1}/otlp_test_data/py.typed +0 -0
- {otlp_test_data-0.12.0 → otlp_test_data-1.0.1}/readme.md +0 -0
- {otlp_test_data-0.12.0 → otlp_test_data-1.0.1}/test/test_repeatable.py +0 -0
- {otlp_test_data-0.12.0 → otlp_test_data-1.0.1}/test/test_smoke.py +0 -0
|
@@ -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:
|
|
@@ -11,7 +12,7 @@ jobs:
|
|
|
11
12
|
fail-fast: false
|
|
12
13
|
matrix:
|
|
13
14
|
python-version: [3.8, 3.9, "3.10", 3.11, 3.12, 3.13, 3.13t, 3.14]
|
|
14
|
-
dep-versions: [--frozen, "--resolution lowest", "--resolution highest"]
|
|
15
|
+
dep-versions: [--frozen, "--resolution lowest", "--resolution highest --upgrade"]
|
|
15
16
|
steps:
|
|
16
17
|
- uses: actions/checkout@v4
|
|
17
18
|
- uses: astral-sh/setup-uv@v5
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: otlp-test-data
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.1
|
|
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
|
|
7
|
+
License: Apache License (2.0)
|
|
7
8
|
Classifier: Development Status :: 3 - Alpha
|
|
8
9
|
Classifier: Framework :: OpenTelemetry
|
|
9
10
|
Classifier: Framework :: OpenTelemetry :: Exporters
|
|
10
11
|
Classifier: Intended Audience :: Developers
|
|
11
|
-
Classifier: License :: OSI Approved ::
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
13
|
Classifier: Natural Language :: English
|
|
13
14
|
Classifier: Operating System :: OS Independent
|
|
14
15
|
Classifier: Programming Language :: Python
|
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "otlp-test-data"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "1.0.1"
|
|
4
4
|
description = "Produces OTLP data using OTEL instrumentation"
|
|
5
5
|
requires-python = ">=3.8"
|
|
6
|
-
|
|
7
|
-
# license = "MIT"
|
|
6
|
+
license = {text = "Apache License (2.0)"}
|
|
8
7
|
readme = "readme.md"
|
|
9
8
|
classifiers = [
|
|
10
9
|
"Development Status :: 3 - Alpha",
|
|
11
10
|
"Intended Audience :: Developers",
|
|
12
|
-
"License :: OSI Approved ::
|
|
11
|
+
"License :: OSI Approved :: Apache Software License",
|
|
13
12
|
"Natural Language :: English",
|
|
14
13
|
"Operating System :: OS Independent",
|
|
15
14
|
"Programming Language :: Python",
|