forked from pool/python-boto3
- Update to 1.26.66 * api-change:``transfer``: [``botocore``] Updated the documentation for the ImportCertificate API call, and added examples. - from version 1.26.65 * api-change:``compute-optimizer``: [``botocore``] AWS Compute optimizer can now infer if Kafka is running on an instance. * api-change:``customer-profiles``: [``botocore``] This release deprecates the PartyType and Gender enum data types from the Profile model and replaces them with new PartyTypeString and GenderString attributes, which accept any string of length up to 255. * api-change:``frauddetector``: [``botocore``] My AWS Service (Amazon Fraud Detector) - This release introduces Cold Start Model Training which optimizes training for small datasets and adds intelligent methods for treating unlabeled data. You can now train Online Fraud Insights or Transaction Fraud Insights models with minimal historical-data. * api-change:``mediaconvert``: [``botocore``] The AWS Elemental MediaConvert SDK has added improved scene change detection capabilities and a bandwidth reduction filter, along with video quality enhancements, to the AVC encoder. * api-change:``outposts``: [``botocore``] Adds OrderType to Order structure. Adds PreviousOrderId and PreviousLineItemId to LineItem structure. Adds new line item status REPLACED. Increases maximum length of pagination token. - from version 1.26.64 * enhancement:AWSCRT: [``botocore``] Upgrade awscrt version to 0.16.9 * api-change:``proton``: [``botocore``] Add new GetResourcesSummary API * api-change:``redshift``: [``botocore``] Corrects descriptions of the parameters for the API operations RestoreFromClusterSnapshot, RestoreTableFromClusterSnapshot, and CreateCluster. - from version 1.26.63 * api-change:``appconfig``: [``botocore``] AWS AppConfig introduces KMS customer-managed key (CMK) encryption of configuration data, along with AWS Secrets Manager as a new configuration data source. S3 objects using SSE-KMS encryption and SSM Parameter Store SecureStrings are also now supported. * api-change:``connect``: [``botocore``] Enabled FIPS endpoints for GovCloud (US) regions in SDK. OBS-URL: https://build.opensuse.org/request/show/1063826 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:aws/python-boto3?expand=0&rev=146
83 lines
2.6 KiB
RPMSpec
83 lines
2.6 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.66
|
|
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.66}
|
|
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.66
|
|
Requires: python-jmespath < 2.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
|