forked from pool/python-PyGithub
		
	- Update to 1.55:
* Remove client_id/client_secret authentication (#1888) (901af8c8) * Adjust to Github API changes regarding emails (#1890) (2c77cfad) + This impacts what AuthenticatedUser.get_emails() returns * Export headers in GithubException (#1887) (ddd437a7) * Do not import from unpackaged paths in typing (#1926) (27ba7838) * Implement hash for CompletableGithubObject (#1922) (4faff23c) * Use right variable in both get_check_runs() (#1889) (3003e065) * fix bad assertions in github.Project.edit (#1817) (6bae9e5c) * Add support for deleting repository secrets (#1868) (696793de) * Adding github actions secrets (#1681) (c90c050e) * Drop support for Python 3.5 (#1770) (63e4fae9) * Fix stubs file for Repository (fab682a5) * The Github.get_installation(integer) method has been removed. * Repository.create_deployment()'s payload parameter is now a dictionary. * Add support for Check Suites (#1764) (6d501b28) * Add missing preview features of Deployment and Deployment Statuses API * Add Support for Check Runs (#1727) (c77c0676) * Add WorkflowRun.workflow_id (#1737) (78a29a7c) * Added support for the Self-Hosted actions runners API (#1684) (24251f4b) * Fix Branch protection status in the examples (#1729) (88800844) * Filter the DeprecationWarning in Team tests (#1728) (23f47539) * Added get_installations() to Organizations (#1695) (b42fb244) * Fix #1507: Add new Teams: Add or update team repository endpoint * Added support for `Repository.get_workflow_runs` parameters * feat(pullrequest): add the rebaseable attribute (#1690) (ee4c7a7e) * Add support for deleting reactions (#1708) (f7d203c0) * Add get_timeline() to Issue's type stubs (#1663) (6bc9ecc8) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyGithub?expand=0&rev=39
This commit is contained in:
		| @@ -1,3 +1,35 @@ | ||||
| ------------------------------------------------------------------- | ||||
| Wed May 12 05:57:53 UTC 2021 - Steve Kowalik <steven.kowalik@suse.com> | ||||
|  | ||||
| - Update to 1.55: | ||||
|   * Remove client_id/client_secret authentication (#1888) (901af8c8) | ||||
|   * Adjust to Github API changes regarding emails (#1890) (2c77cfad) | ||||
|     + This impacts what AuthenticatedUser.get_emails() returns | ||||
|   * Export headers in GithubException (#1887) (ddd437a7) | ||||
|   * Do not import from unpackaged paths in typing (#1926) (27ba7838) | ||||
|   * Implement hash for CompletableGithubObject (#1922) (4faff23c) | ||||
|   * Use right variable in both get_check_runs() (#1889) (3003e065) | ||||
|   * fix bad assertions in github.Project.edit (#1817) (6bae9e5c) | ||||
|   * Add support for deleting repository secrets (#1868) (696793de) | ||||
|   * Adding github actions secrets (#1681) (c90c050e) | ||||
|   * Drop support for Python 3.5 (#1770) (63e4fae9) | ||||
|   * Fix stubs file for Repository (fab682a5) | ||||
|   * The Github.get_installation(integer) method has been removed. | ||||
|   * Repository.create_deployment()'s payload parameter is now a dictionary. | ||||
|   * Add support for Check Suites (#1764) (6d501b28) | ||||
|   * Add missing preview features of Deployment and Deployment Statuses API | ||||
|   * Add Support for Check Runs (#1727) (c77c0676) | ||||
|   * Add WorkflowRun.workflow_id (#1737) (78a29a7c) | ||||
|   * Added support for the Self-Hosted actions runners API (#1684) (24251f4b) | ||||
|   * Fix Branch protection status in the examples (#1729) (88800844) | ||||
|   * Filter the DeprecationWarning in Team tests (#1728) (23f47539) | ||||
|   * Added get_installations() to Organizations (#1695) (b42fb244) | ||||
|   * Fix #1507: Add new Teams: Add or update team repository endpoint | ||||
|   * Added support for `Repository.get_workflow_runs` parameters | ||||
|   * feat(pullrequest): add the rebaseable attribute (#1690) (ee4c7a7e) | ||||
|   * Add support for deleting reactions (#1708) (f7d203c0) | ||||
|   * Add get_timeline() to Issue's type stubs (#1663) (6bc9ecc8) | ||||
|  | ||||
| ------------------------------------------------------------------- | ||||
| Tue Aug 18 08:22:14 UTC 2020 - Steve Kowalik <steven.kowalik@suse.com> | ||||
|  | ||||
|   | ||||
| @@ -1,7 +1,7 @@ | ||||
| # | ||||
| # spec file for package python-PyGithub | ||||
| # | ||||
| # Copyright (c) 2020 SUSE LLC | ||||
| # Copyright (c) 2021 SUSE LLC | ||||
| # | ||||
| # All modifications and additions to the file contributed by third parties | ||||
| # remain the property of their copyright owners, unless otherwise agreed | ||||
| @@ -19,15 +19,15 @@ | ||||
| %{?!python_module:%define python_module() python-%{**} python3-%{**}} | ||||
| %define skip_python2 1 | ||||
| Name:           python-PyGithub | ||||
| Version:        1.53 | ||||
| Version:        1.55 | ||||
| Release:        0 | ||||
| Summary:        Python library to use the GitHub API v3 | ||||
| License:        LGPL-3.0-or-later | ||||
| Group:          Development/Languages/Python | ||||
| 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} | ||||
| @@ -36,6 +36,7 @@ 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 | ||||
|   | ||||
| @@ -1,3 +0,0 @@ | ||||
| version https://git-lfs.github.com/spec/v1 | ||||
| oid sha256:3942accaab0657836375acdd1b33ef6d8d527144778e32aaa1c61b5fc4d00cb9 | ||||
| size 3026570 | ||||
							
								
								
									
										3
									
								
								v1.55.tar.gz
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								v1.55.tar.gz
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,3 @@ | ||||
| version https://git-lfs.github.com/spec/v1 | ||||
| oid sha256:c674e5cceba1f2cf0d7ea79da66cf31f1131e86c41cd66a2330890f74327c0e1 | ||||
| size 3123996 | ||||
		Reference in New Issue
	
	Block a user