forked from pool/python-sentry-sdk
Eric Schirra
d436a49f84
- Update to version 0.19.4 * Fix a bug that would make applications crash if an old version of boto3 was installed. - Update to version 0.19.3 * Automatically pass integration-relevant data to traces_sampler for AWS, AIOHTTP, ASGI, Bottle, Celery, Django, Falcon, Flask, GCP, Pyramid, Tryton, RQ, and WSGI integrations * Fix a bug where the AWS integration would crash if event was anything besides a dictionary * Fix the Django integrations's ASGI handler for Channels 3.0. Thanks Luke Pomfrey! - Update to version 0.19.2 * Add traces_sampler option. * The SDK now attempts to infer a default release from various environment variables and the current git repo. * Fix a crash with async views in Django 3.1. * Fix a bug where complex URL patterns in Django would create malformed transaction names. * Add options for transaction styling in AIOHTTP. * Add basic attachment support (documentation tbd). * fix a crash in the pure_eval integration. * Integration for creating spans from boto3. - Update to version 0.19.1 * Fix dependency check for blinker fixes #858 * Fix incorrect timeout warnings in AWS Lambda and GCP integrations #854 - Update to version 0.19.0 * Removed _experiments.auto_enabling_integrations in favor of just auto_enabling_integrations which is now enabled by default. OBS-URL: https://build.opensuse.org/request/show/852439 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sentry-sdk?expand=0&rev=27
94 lines
3.3 KiB
RPMSpec
94 lines
3.3 KiB
RPMSpec
#
|
|
# spec file for package python-sentry-sdk
|
|
#
|
|
# Copyright (c) 2020 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-%{**}}
|
|
# nothing provides python2-venusian >= 1.0 needed by python2-pyramid
|
|
%define skip_python2 1
|
|
Name: python-sentry-sdk
|
|
Version: 0.19.4
|
|
Release: 0
|
|
Summary: Python SDK for Sentry.io
|
|
License: BSD-2-Clause
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/getsentry/sentry-python
|
|
Source0: https://github.com/getsentry/sentry-python/archive/%{version}/sentry-python-%{version}.tar.gz
|
|
BuildRequires: %{python_module Flask >= 0.8}
|
|
BuildRequires: %{python_module blinker >= 1.1}
|
|
BuildRequires: %{python_module bottle >= 0.12.13}
|
|
BuildRequires: %{python_module certifi}
|
|
BuildRequires: %{python_module executing}
|
|
BuildRequires: %{python_module falcon >= 1.4}
|
|
BuildRequires: %{python_module jsonschema}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module urllib3}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-Flask >= 0.8
|
|
Requires: python-blinker >= 1.1
|
|
Requires: python-bottle >= 0.12.13
|
|
Requires: python-certifi
|
|
Requires: python-executing
|
|
Requires: python-falcon >= 1.4
|
|
Requires: python-jsonschema
|
|
Requires: python-urllib3
|
|
BuildArch: noarch
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module Werkzeug}
|
|
BuildRequires: %{python_module eventlet}
|
|
BuildRequires: %{python_module gevent}
|
|
BuildRequires: %{python_module hypothesis}
|
|
BuildRequires: %{python_module pyramid}
|
|
BuildRequires: %{python_module pytest-localserver}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module rq}
|
|
BuildRequires: %{python_module tornado}
|
|
BuildRequires: %{python_module tox}
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
A Python SDK for Sentry.io.
|
|
https://sentry.io/for/python/
|
|
|
|
%prep
|
|
%setup -q -n sentry-python-%{version}
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
export PYTHONDONTWRITEBYTECODE=1
|
|
export PYTEST_ADDOPTS="-W ignore::DeprecationWarning"
|
|
# do not test integration:
|
|
rm -r tests/integrations
|
|
# test_transport_works / test_transport_infinite_loop / test_simple_rate_limits/ test_data_category_limits / test_complex_limits_without_data_category stucks
|
|
|
|
# test_auto_enabling_integrations_catches_import_error asert False where False = ..., not sure
|
|
%pytest -k 'not (test_transport_works or test_auto_enabling_integrations_catches_import_error or test_filename or test_transport_infinite_loop or test_simple_rate_limits or test_data_category_limits or test_complex_limits_without_data_category)'
|
|
|
|
%files %{python_files}
|
|
%doc README.md CHANGES.md
|
|
%license LICENSE
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|