forked from pool/python-PyGithub
- Update to 1.57 Breaking Changes * Add support for Python 3.11, drop support for Python 3.6 (#2332) (1e2f10d) Bug Fixes & Improvements * Speed up get requested reviewers and teams for pr (#2349) (6725ece) * [WorkflowRun] - Add missing attributes (run_started_at & run_attempt), remove deprecated unicode type (#2273) (3a6235b) * Add support for repository autolink references (#2016) (0fadd6b) * Add retry and pool_size to typing (#2151) (784a3ef) * Fix/types for repo topic team (#2341) (db9337a) * Add class Artifact (#2313) (#2319) (437ff84) OBS-URL: https://build.opensuse.org/request/show/1034365 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyGithub?expand=0&rev=43
70 lines
2.1 KiB
RPMSpec
70 lines
2.1 KiB
RPMSpec
#
|
|
# spec file for package python-PyGithub
|
|
#
|
|
# 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-PyGithub
|
|
Version: 1.57
|
|
Release: 0
|
|
Summary: Python library to use the GitHub API v3
|
|
License: LGPL-3.0-or-later
|
|
URL: https://github.com/PyGithub/PyGithub
|
|
Source: https://github.com/PyGithub/PyGithub/archive/v%{version}.tar.gz
|
|
BuildRequires: %{python_module Deprecated}
|
|
BuildRequires: %{python_module PyJWT}
|
|
BuildRequires: %{python_module PyNaCl >= 1.4.0}
|
|
BuildRequires: %{python_module httpretty >= 0.9.6}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module requests >= 2.14.0}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-Deprecated
|
|
Requires: python-PyJWT
|
|
Requires: python-PyNaCl >= 1.4.0
|
|
Requires: python-requests >= 2.14.0
|
|
Recommends: python-cryptography
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
PyGithub is a Python 3 library to use the Github API v3.
|
|
Github resources (repositories, user profiles, organizations,
|
|
etc.) can be managed with this.
|
|
|
|
%prep
|
|
%setup -q -n PyGithub-%{version}
|
|
%autopatch -p1
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
%pytest
|
|
|
|
%files %{python_files}
|
|
%license COPYING COPYING.LESSER
|
|
%doc README.md
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|