John Paul Adrian Glaubitz
7466629ba7
- Update to version 1.26.2 * api-change:``memorydb``: [``botocore``] Adding support for r6gd instances for MemoryDB Redis with data tiering. In a cluster with data tiering enabled, when available memory capacity is exhausted, the least recently used data is automatically tiered to solid state drives for cost-effective capacity scaling with minimal performance impact. * api-change:``sagemaker``: [``botocore``] Amazon SageMaker now supports running training jobs on ml.trn1 instance types. * api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version - from version 1.26.1 * api-change:``iotsitewise``: [``botocore``] This release adds the ListAssetModelProperties and ListAssetProperties APIs. You can list all properties that belong to a single asset model or asset using these two new APIs. * api-change:``s3control``: [``botocore``] S3 on Outposts launches support for Lifecycle configuration for Outposts buckets. With S3 Lifecycle configuration, you can mange objects so they are stored cost effectively. You can manage objects using size-based rules and specify how many noncurrent versions bucket will retain. * api-change:``sagemaker``: [``botocore``] This release updates Framework model regex for ModelPackage to support new Framework version xgboost, sklearn. * api-change:``ssm-incidents``: [``botocore``] Adds support for tagging replication-set on creation. - from version 1.26.0 * feature:Endpoints: [``botocore``] Migrate all services to use new AWS Endpoint Resolution framework * Enhancement:Endpoints: [``botocore``] Discontinued use of `sslCommonName` hosts as detailed in 1.27.0 (see `#2705 <https://github.com/boto/botocore/issues/2705>`__ for more info) * api-change:``rds``: [``botocore``] Relational Database Service - This release adds support for configuring Storage Throughput on RDS database instances. * api-change:``textract``: [``botocore``] Add ocr results in AnalyzeIDResponse as blocks - from version 1.25.5 * api-change:``apprunner``: [``botocore``] This release adds support for private App Runner services. Services may now be configured to be made private and only accessible from a VPC. The OBS-URL: https://build.opensuse.org/request/show/1033518 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:aws/python-boto3?expand=0&rev=128
89 lines
2.6 KiB
RPMSpec
89 lines
2.6 KiB
RPMSpec
#
|
|
# spec file for package python-boto3
|
|
#
|
|
# Copyright (c) 2022 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.2
|
|
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.2}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module s3transfer < 0.7.0}
|
|
BuildRequires: %{python_module s3transfer >= 0.6.0}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module six}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-botocore < 1.30.0
|
|
Requires: python-botocore >= 1.29.2
|
|
Requires: python-jmespath < 1.0.0
|
|
Requires: python-jmespath >= 0.7.1
|
|
Requires: python-s3transfer < 0.7.0
|
|
Requires: python-s3transfer >= 0.6.0
|
|
Requires: python-six
|
|
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}
|
|
sed -i 's/from botocore.vendored //' boto3/compat.py
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
%pytest --ignore tests/integration -k "not no_bare_six_imports"
|
|
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc CONTRIBUTING.rst README.rst
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|