15
0
Files
python-opentelemetry-api/python-opentelemetry-api.spec
Robert Schweikert a69d1513cb Accepting request 891317 from home:glaubitz:branches:devel:languages:python
- Version update to 1.1.0
  + Added
    - Added py.typed file to every package. This should resolve a bunch of mypy
      errors for users. (#1720)
    - Add auto generated trace and resource attributes semantic conventions (#1759)
    - Added SpanKind to should_sample parameters, suggest using parent span
      context's tracestate instead of manually passed in tracestate in
      should_sample (#1764)
    - Added experimental HTTP back propagators. (#1762)
    - Adjust B3Format propagator to be spec compliant by not modifying context
      when propagation headers are not present/invalid/empty (#1728)
    - Silence unnecessary warning when creating a new Status object without description. (#1721)
    - Update bootstrap cmd to use exact version when installing instrumentation packages. (#1722)
    - Fix B3 propagator to never return None. (#1750)
    - Added ProxyTracerProvider and ProxyTracer implementations to allow fetching provider
      and tracer instances before a global provider is set up. (#1726)
    - Added __contains__ to opentelementry.trace.span.TraceState. (#1773)
      opentelemetry-opentracing-shim Fix an issue in the shim where a Span was being wrapped
      in a NonRecordingSpan when it wasn't necessary. (#1776)
    - OTLP Exporter now uses the scheme in the endpoint to determine whether to establish
      a secure connection or not. (#1771)
- from version 1.10a0
  + This release adds the experimental metrics API/SDK and will include the following packages:
    - opentelemetry-exporter-prometheus
    - opentelemetry-api
    - opentelemetry-sdk
    - opentelemetry-exporter-otlp-proto-grpc
    - opentelemetry-exporter-otlp
- from version 1.0.0
  + NOTE: As part of this release, all old versions have been removed for packages

OBS-URL: https://build.opensuse.org/request/show/891317
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-opentelemetry-api?expand=0&rev=11
2021-05-07 14:10:15 +00:00

64 lines
1.9 KiB
RPMSpec

#
# spec file for package python-opentelemetry-api
#
# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-opentelemetry-api
Version: 1.1.0
Release: 0
Summary: OpenTelemetry Python API
License: Apache-2.0
URL: https://github.com/open-telemetry/opentelemetry-python/tree/master/opentelemetry-api
Source: https://files.pythonhosted.org/packages/source/o/opentelemetry-api/opentelemetry-api-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildRequires: ((python3-aiocontextvars and python3-base < 3.7) or (python36-aiocontextvars and python36-base))
BuildArch: noarch
Requires: python-setuptools
%if %{python_version_nodots} < 37
Requires: python-aiocontextvars
%endif
# SECTION test requirements
BuildRequires: %{python_module pytest}
# /SECTION
%python_subpackages
%description
OpenTelemetry Python API
%prep
%setup -q -n opentelemetry-api-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%files %{python_files}
%doc README.rst
%license LICENSE
%{python_sitelib}/*
%changelog