opentelemetry-instrumentation-tornado 0.54b1__tar.gz → 0.55b0__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.
Files changed (13) hide show
  1. {opentelemetry_instrumentation_tornado-0.54b1 → opentelemetry_instrumentation_tornado-0.55b0}/PKG-INFO +5 -6
  2. {opentelemetry_instrumentation_tornado-0.54b1 → opentelemetry_instrumentation_tornado-0.55b0}/pyproject.toml +4 -5
  3. {opentelemetry_instrumentation_tornado-0.54b1 → opentelemetry_instrumentation_tornado-0.55b0}/src/opentelemetry/instrumentation/tornado/version.py +1 -1
  4. {opentelemetry_instrumentation_tornado-0.54b1 → opentelemetry_instrumentation_tornado-0.55b0}/.gitignore +0 -0
  5. {opentelemetry_instrumentation_tornado-0.54b1 → opentelemetry_instrumentation_tornado-0.55b0}/LICENSE +0 -0
  6. {opentelemetry_instrumentation_tornado-0.54b1 → opentelemetry_instrumentation_tornado-0.55b0}/README.rst +0 -0
  7. {opentelemetry_instrumentation_tornado-0.54b1 → opentelemetry_instrumentation_tornado-0.55b0}/src/opentelemetry/instrumentation/tornado/__init__.py +0 -0
  8. {opentelemetry_instrumentation_tornado-0.54b1 → opentelemetry_instrumentation_tornado-0.55b0}/src/opentelemetry/instrumentation/tornado/client.py +0 -0
  9. {opentelemetry_instrumentation_tornado-0.54b1 → opentelemetry_instrumentation_tornado-0.55b0}/src/opentelemetry/instrumentation/tornado/package.py +0 -0
  10. {opentelemetry_instrumentation_tornado-0.54b1 → opentelemetry_instrumentation_tornado-0.55b0}/tests/__init__.py +0 -0
  11. {opentelemetry_instrumentation_tornado-0.54b1 → opentelemetry_instrumentation_tornado-0.55b0}/tests/test_instrumentation.py +0 -0
  12. {opentelemetry_instrumentation_tornado-0.54b1 → opentelemetry_instrumentation_tornado-0.55b0}/tests/test_metrics_instrumentation.py +0 -0
  13. {opentelemetry_instrumentation_tornado-0.54b1 → opentelemetry_instrumentation_tornado-0.55b0}/tests/tornado_test_app.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: opentelemetry-instrumentation-tornado
3
- Version: 0.54b1
3
+ Version: 0.55b0
4
4
  Summary: Tornado instrumentation for OpenTelemetry
5
5
  Project-URL: Homepage, https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-tornado
6
6
  Project-URL: Repository, https://github.com/open-telemetry/opentelemetry-python-contrib
@@ -11,17 +11,16 @@ Classifier: Development Status :: 4 - Beta
11
11
  Classifier: Intended Audience :: Developers
12
12
  Classifier: License :: OSI Approved :: Apache Software License
13
13
  Classifier: Programming Language :: Python
14
- Classifier: Programming Language :: Python :: 3.8
15
14
  Classifier: Programming Language :: Python :: 3.9
16
15
  Classifier: Programming Language :: Python :: 3.10
17
16
  Classifier: Programming Language :: Python :: 3.11
18
17
  Classifier: Programming Language :: Python :: 3.12
19
18
  Classifier: Programming Language :: Python :: 3.13
20
- Requires-Python: >=3.8
19
+ Requires-Python: >=3.9
21
20
  Requires-Dist: opentelemetry-api~=1.12
22
- Requires-Dist: opentelemetry-instrumentation==0.54b1
23
- Requires-Dist: opentelemetry-semantic-conventions==0.54b1
24
- Requires-Dist: opentelemetry-util-http==0.54b1
21
+ Requires-Dist: opentelemetry-instrumentation==0.55b0
22
+ Requires-Dist: opentelemetry-semantic-conventions==0.55b0
23
+ Requires-Dist: opentelemetry-util-http==0.55b0
25
24
  Provides-Extra: instruments
26
25
  Requires-Dist: tornado>=5.1.1; extra == 'instruments'
27
26
  Description-Content-Type: text/x-rst
@@ -8,7 +8,7 @@ dynamic = ["version"]
8
8
  description = "Tornado instrumentation for OpenTelemetry"
9
9
  readme = "README.rst"
10
10
  license = "Apache-2.0"
11
- requires-python = ">=3.8"
11
+ requires-python = ">=3.9"
12
12
  authors = [
13
13
  { name = "OpenTelemetry Authors", email = "cncf-opentelemetry-contributors@lists.cncf.io" },
14
14
  ]
@@ -17,7 +17,6 @@ classifiers = [
17
17
  "Intended Audience :: Developers",
18
18
  "License :: OSI Approved :: Apache Software License",
19
19
  "Programming Language :: Python",
20
- "Programming Language :: Python :: 3.8",
21
20
  "Programming Language :: Python :: 3.9",
22
21
  "Programming Language :: Python :: 3.10",
23
22
  "Programming Language :: Python :: 3.11",
@@ -26,9 +25,9 @@ classifiers = [
26
25
  ]
27
26
  dependencies = [
28
27
  "opentelemetry-api ~= 1.12",
29
- "opentelemetry-instrumentation == 0.54b1",
30
- "opentelemetry-semantic-conventions == 0.54b1",
31
- "opentelemetry-util-http == 0.54b1",
28
+ "opentelemetry-instrumentation == 0.55b0",
29
+ "opentelemetry-semantic-conventions == 0.55b0",
30
+ "opentelemetry-util-http == 0.55b0",
32
31
  ]
33
32
 
34
33
  [project.optional-dependencies]
@@ -12,4 +12,4 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- __version__ = "0.54b1"
15
+ __version__ = "0.55b0"