python-boto3/python-boto3.spec
Robert Schweikert 0ea9d60019 Accepting request 1095954 from home:glaubitz:branches:devel:languages:python:aws
- Update to 1.26.163:
  * api-change:``internetmonitor``: [``botocore``] This release adds a new feature for Amazon
    CloudWatch Internet Monitor that enables customers to set custom thresholds, for performance and
    availability drops, for triggering when to create a health event.
  * api-change:``kinesisanalyticsv2``: [``botocore``] Support for new runtime environment in Kinesis
    Data Analytics Studio: Zeppelin-0.10, Apache Flink-1.15
  * api-change:``lambda``: [``botocore``] Surface ResourceConflictException in
    DeleteEventSourceMapping
  * api-change:``omics``: [``botocore``] Add Common Workflow Language (CWL) as a supported language
    for Omics workflows
  * api-change:``rds``: [``botocore``] Amazon Relational Database Service (RDS) now supports joining
    a RDS for SQL Server instance to a self-managed Active Directory.
  * api-change:``s3``: [``botocore``] The S3 LISTObjects, ListObjectsV2 and ListObjectVersions API
    now supports a new optional header x-amz-optional-object-attributes. If header contains
    RestoreStatus as the value, then S3 will include Glacier restore status i.e. isRestoreInProgress
    and RestoreExpiryDate in List response.
  * api-change:``sagemaker``: [``botocore``] This release adds support for Model Cards Model Registry
    integration.
- from version 1.26.162
  * bugfix:Parsers: [``botocore``] Fixes datetime parse error handling for out-of-range and negative
    timestamps (`#2564 <https://github.com/boto/botocore/issues/2564>`__).
  * api-change:``appfabric``: [``botocore``] Initial release of AWS AppFabric for connecting SaaS
    applications for better productivity and security.
  * api-change:``appflow``: [``botocore``] This release adds support to bypass SSO with the SAPOData
    connector when connecting to an SAP instance.
  * api-change:``emr-serverless``: [``botocore``] This release adds support to update the release
    label of an EMR Serverless application to upgrade it to a different version of Amazon EMR via
    UpdateApplication API.
  * api-change:``ivs``: [``botocore``] IVS customers can now revoke the viewer session associated
    with an auth token, to prevent and stop playback using that token.

OBS-URL: https://build.opensuse.org/request/show/1095954
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:aws/python-boto3?expand=0&rev=166
2023-06-29 11:17:51 +00:00

81 lines
2.5 KiB
RPMSpec

#
# spec file for package python-boto3
#
# Copyright (c) 2023 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-boto3
Version: 1.26.163
Release: 0
Summary: Amazon Web Services Library
License: Apache-2.0
URL: https://github.com/boto/boto3
Source: https://github.com/boto/boto3/archive/%{version}.tar.gz
# Related test dependencies
BuildRequires: %{python_module botocore < 1.30.0}
BuildRequires: %{python_module botocore >= 1.29.163}
BuildRequires: %{python_module pytest-xdist}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module s3transfer < 0.7.0}
BuildRequires: %{python_module s3transfer >= 0.6.0}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-botocore < 1.30.0
Requires: python-botocore >= 1.29.163
Requires: python-jmespath < 2.0.0
Requires: python-jmespath >= 0.7.1
Requires: python-s3transfer < 0.7.0
Requires: python-s3transfer >= 0.6.0
BuildArch: noarch
%python_subpackages
%description
Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK) for
Python, which allows Python developers to write software that makes use of
services like Amazon S3 and Amazon EC2.
For documentation consult the online documentation at
http://boto3.readthedocs.org/en/latest/
# Note to maintainers also familia with python-boto:
# The documentation generation requires access to AWS, thus it is not
# possible to generate the documentation in OBS
%prep
%setup -q -n boto3-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest %{?jobs: -n %jobs} --ignore tests/integration -k "not no_bare_six_imports"
%files %{python_files}
%license LICENSE
%doc CONTRIBUTING.rst README.rst
%{python_sitelib}/*
%changelog