PyGithub 2.4.0__tar.gz → 2.5.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pygithub-2.4.0 → pygithub-2.5.0}/.github/workflows/_build-pkg.yml +3 -3
- {pygithub-2.4.0 → pygithub-2.5.0}/.github/workflows/lint.yml +11 -1
- {pygithub-2.4.0 → pygithub-2.5.0}/.github/workflows/pypi-release.yml +1 -1
- pygithub-2.5.0/.github/workflows/top-issues.yaml +23 -0
- {pygithub-2.4.0/PyGithub.egg-info → pygithub-2.5.0}/PKG-INFO +1 -1
- {pygithub-2.4.0 → pygithub-2.5.0/PyGithub.egg-info}/PKG-INFO +1 -1
- {pygithub-2.4.0 → pygithub-2.5.0}/PyGithub.egg-info/SOURCES.txt +29 -1
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/changes.rst +43 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/utilities.rst +9 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/AuthenticatedUser.py +12 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Commit.py +5 -5
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Comparison.py +5 -5
- pygithub-2.5.0/github/DiscussionBase.py +135 -0
- pygithub-2.5.0/github/DiscussionCommentBase.py +135 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/EnterpriseConsumedLicenses.py +2 -2
- {pygithub-2.4.0 → pygithub-2.5.0}/github/GithubIntegration.py +15 -2
- {pygithub-2.4.0 → pygithub-2.5.0}/github/GithubObject.py +83 -1
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Installation.py +11 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/IssueComment.py +8 -8
- {pygithub-2.4.0 → pygithub-2.5.0}/github/MainClass.py +18 -2
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Organization.py +2 -2
- {pygithub-2.4.0 → pygithub-2.5.0}/github/PaginatedList.py +195 -66
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Project.py +1 -1
- {pygithub-2.4.0 → pygithub-2.5.0}/github/ProjectColumn.py +1 -1
- {pygithub-2.4.0 → pygithub-2.5.0}/github/PullRequest.py +8 -7
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Repository.py +79 -1
- pygithub-2.5.0/github/RepositoryDiscussion.py +213 -0
- pygithub-2.5.0/github/RepositoryDiscussionCategory.py +141 -0
- pygithub-2.5.0/github/RepositoryDiscussionComment.py +149 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Requester.py +177 -22
- {pygithub-2.4.0 → pygithub-2.5.0}/github/TeamDiscussion.py +5 -80
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Workflow.py +1 -1
- {pygithub-2.4.0 → pygithub-2.5.0}/github/WorkflowRun.py +11 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/scripts/fix_headers.py +1 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/AuthenticatedUser.py +12 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Authentication.py +7 -6
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/BadAttributes.py +1 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Commit.py +1 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/GithubIntegration.py +5 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/GithubObject.py +20 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Github_.py +5 -0
- pygithub-2.5.0/tests/GraphQl.py +357 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Installation.py +7 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/IssueComment.py +1 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Logging_.py +1 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Notification.py +1 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/PaginatedList.py +62 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/PullRequest.py +15 -22
- pygithub-2.5.0/tests/ReplayData/AuthenticatedUser.testGetMemberships.txt +10 -0
- pygithub-2.5.0/tests/ReplayData/Github.testGetRepositoryDiscussion.txt +31 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GraphQl.testDefaultUrl.txt +1 -1
- pygithub-2.5.0/tests/ReplayData/GraphQl.testMutation.txt +10 -0
- pygithub-2.5.0/tests/ReplayData/GraphQl.testMutationClass.txt +10 -0
- pygithub-2.5.0/tests/ReplayData/GraphQl.testNode.txt +32 -0
- pygithub-2.5.0/tests/ReplayData/GraphQl.testNodeClass.txt +32 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GraphQl.testOtherPort.txt +1 -1
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GraphQl.testOtherUrl.txt +1 -1
- pygithub-2.5.0/tests/ReplayData/GraphQl.testPaginationAndRestIntegration.txt +65 -0
- pygithub-2.5.0/tests/ReplayData/GraphQl.testQuery.txt +10 -0
- pygithub-2.5.0/tests/ReplayData/GraphQl.testQueryGraphQlClass.txt +10 -0
- pygithub-2.5.0/tests/ReplayData/GraphQl.testQueryRestClass.txt +10 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/IssueComment.testMinimize.txt +1 -1
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/IssueComment.testUnminimize.txt +1 -1
- pygithub-2.5.0/tests/ReplayData/PaginatedList.testCustomPerPageIteration.txt +54 -0
- pygithub-2.5.0/tests/ReplayData/PaginatedList.testCustomPerPageReversedIteration.txt +65 -0
- pygithub-2.5.0/tests/ReplayData/PaginatedList.testGraphQlPagination.txt +87 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testDeleteBranch.txt +1 -1
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testDeleteOnMerge.txt +1 -1
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testDisableAutomerge.txt +1 -1
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testEnableAutomerge.txt +1 -1
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testEnableAutomergeDefaultValues.txt +1 -1
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testEnableAutomergeError.txt +1 -1
- pygithub-2.5.0/tests/ReplayData/Repository.testGetDiscussion.txt +21 -0
- pygithub-2.5.0/tests/ReplayData/Repository.testGetDiscussions.txt +43 -0
- pygithub-2.5.0/tests/ReplayData/Repository.testGetDiscussionsByAnswered.txt +21 -0
- pygithub-2.5.0/tests/ReplayData/Repository.testGetDiscussionsByCategory.txt +21 -0
- pygithub-2.5.0/tests/ReplayData/Repository.testGetDiscussionsByStates.txt +21 -0
- pygithub-2.5.0/tests/ReplayData/RepositoryDiscussion.setUp.txt +10 -0
- pygithub-2.5.0/tests/ReplayData/RepositoryDiscussion.testAddAndDeleteComment.txt +76 -0
- pygithub-2.5.0/tests/ReplayData/RepositoryDiscussion.testGetComments.txt +21 -0
- pygithub-2.5.0/tests/ReplayData/RepositoryDiscussion.testGetCommentsWithoutNodeId.txt +10 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Repository.py +56 -0
- pygithub-2.5.0/tests/RepositoryDiscussion.py +216 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/RepositoryKey.py +1 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Requester.py +36 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/SecurityAndAnalysis.py +1 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/WorkflowRun.py +3 -0
- pygithub-2.4.0/.github/stale.yml +0 -54
- pygithub-2.4.0/tests/GraphQl.py +0 -76
- {pygithub-2.4.0 → pygithub-2.5.0}/.git-blame-ignore-revs +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/.github/FUNDING.yml +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/.github/dependabot.yml +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/.github/release-drafter.yml +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/.github/workflows/ci.yml +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/.gitignore +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/.pre-commit-config.yaml +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/.readthedocs.yml +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/CONTRIBUTING.md +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/COPYING +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/COPYING.LESSER +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/DEPLOY.md +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/MAINTAINERS +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/PyGithub.egg-info/dependency_links.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/PyGithub.egg-info/requires.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/PyGithub.egg-info/top_level.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/README.md +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/codecov.yml +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/.gitignore +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/Design.md +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/conf.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/examples/Authentication.rst +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/examples/Branch.rst +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/examples/Commit.rst +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/examples/Issue.rst +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/examples/MainClass.rst +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/examples/Milestone.rst +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/examples/PullRequest.rst +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/examples/Repository.rst +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/examples/Webhook.rst +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/examples.rst +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/github.rst +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/github_integration.rst +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/github_objects/.gitignore +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/index.rst +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/introduction.rst +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/doc/reference.rst +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/AccessToken.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/AdvisoryBase.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/AdvisoryCredit.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/AdvisoryCreditDetailed.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/AdvisoryVulnerability.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/AdvisoryVulnerabilityPackage.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/AppAuthentication.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/ApplicationOAuth.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Artifact.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Auth.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Authorization.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/AuthorizationApplication.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Autolink.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Branch.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/BranchProtection.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/CVSS.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/CWE.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/CheckRun.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/CheckRunAnnotation.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/CheckRunOutput.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/CheckSuite.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Clones.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/CodeScanAlert.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/CodeScanAlertInstance.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/CodeScanAlertInstanceLocation.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/CodeScanRule.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/CodeScanTool.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/CommitCombinedStatus.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/CommitComment.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/CommitStats.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/CommitStatus.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Consts.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/ContentFile.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/DependabotAlert.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/DependabotAlertAdvisory.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/DependabotAlertDependency.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/DependabotAlertVulnerability.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Deployment.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/DeploymentStatus.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Download.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Enterprise.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Environment.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/EnvironmentDeploymentBranchPolicy.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/EnvironmentProtectionRule.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/EnvironmentProtectionRuleReviewer.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Event.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/File.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Gist.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/GistComment.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/GistFile.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/GistHistoryState.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/GitAuthor.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/GitBlob.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/GitCommit.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/GitObject.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/GitRef.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/GitRelease.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/GitReleaseAsset.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/GitTag.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/GitTree.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/GitTreeElement.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/GithubApp.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/GithubException.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/GithubRetry.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/GitignoreTemplate.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/GlobalAdvisory.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Hook.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/HookDelivery.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/HookDescription.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/HookResponse.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/InputFileContent.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/InputGitAuthor.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/InputGitTreeElement.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/InstallationAuthorization.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Invitation.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Issue.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/IssueEvent.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/IssuePullRequest.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Label.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/License.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Membership.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Migration.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Milestone.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/NamedEnterpriseUser.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/NamedUser.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Notification.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/NotificationSubject.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/OrganizationCustomProperty.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/OrganizationDependabotAlert.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/OrganizationSecret.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/OrganizationVariable.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Path.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Permissions.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Plan.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/ProjectCard.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/PublicKey.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/PullRequestComment.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/PullRequestMergeStatus.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/PullRequestPart.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/PullRequestReview.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Rate.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/RateLimit.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Reaction.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Referrer.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/RepositoryAdvisory.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/RepositoryKey.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/RepositoryPreferences.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/RequiredPullRequestReviews.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/RequiredStatusChecks.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Secret.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/SecurityAndAnalysis.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/SecurityAndAnalysisFeature.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/SelfHostedActionsRunner.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/SourceImport.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Stargazer.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/StatsCodeFrequency.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/StatsCommitActivity.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/StatsContributor.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/StatsParticipation.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/StatsPunchCard.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Tag.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Team.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/TimelineEvent.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/TimelineEventSource.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Topic.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/UserKey.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/Variable.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/View.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/WorkflowJob.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/WorkflowStep.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/__init__.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/github/py.typed +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/pyproject.toml +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/requirements/docs.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/requirements/test.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/requirements/types.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/scripts/add_attribute.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/scripts/prepare_release.sh +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/setup.cfg +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ApplicationOAuth.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Artifact.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Authorization.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Autolink.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Branch.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/BranchProtection.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/CheckRun.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/CheckSuite.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/CommitCombinedStatus.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/CommitComment.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/CommitStatus.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ConditionalRequestUpdate.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Connection.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ContentFile.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/DependabotAlert.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Deployment.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/DeploymentStatus.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Download.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Enterprise.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/EnterpriseAdmin.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Environment.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Equality.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Event.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Exceptions.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ExposeAllAttributes.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Framework.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Gist.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/GistComment.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/GitBlob.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/GitCommit.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/GitMembership.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/GitRef.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/GitRelease.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/GitTag.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/GitTree.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/GithubApp.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/GithubRetry.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/GlobalAdvisory.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Hook.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue131.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue133.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue134.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue139.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue140.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue142.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue174.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue2030.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue214.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue216.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue278.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue33.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue494.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue50.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue54.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue572.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue80.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue823.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue87.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue937.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Issue945.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/IssueEvent.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Label.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/License.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Markdown.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Migration.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Milestone.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/NamedUser.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/NamedUser1430.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Organization.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Organization1437.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Organization2072.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/OrganizationHasInMembers.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Permissions.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Persistence.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Pickle.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/PoolSize.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Project.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Project1434.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ProjectColumn.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/PublicKey.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/PullRequest1168.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/PullRequest1169.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/PullRequest1375.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/PullRequest1682.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/PullRequest1684.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/PullRequest2408.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/PullRequestComment.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/PullRequestFile.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/PullRequestReview.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/PullRequestReview1856.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/RateLimiting.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/RawData.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Reaction.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReleaseAsset.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ApplicationOAuth.testEnterpriseGetAccessToken.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ApplicationOAuth.testGetAccessToken.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ApplicationOAuth.testGetAccessTokenBadCode.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ApplicationOAuth.testGetAccessTokenUnknownError.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ApplicationOAuth.testGetAccessTokenWithExpiry.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ApplicationOAuth.testRefreshAccessToken.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ApplicationOAuth.testRefreshAccessTokenBadCode.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ApplicationOAuth.testRefreshAccessTokenUnknownError.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Artifact.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Artifact.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Artifact.testGetArtifactsFromRepo.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Artifact.testGetArtifactsFromRepoWithName.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Artifact.testGetArtifactsFromWorkflow.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Artifact.testGetArtifactsFromWorkflowWithName.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Artifact.testGetNonexistentArtifact.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Artifact.testGetSingleArtifactFromRepo.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testAcceptInvitation.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testAttributes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testCreateAuthorizationWithAllArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testCreateAuthorizationWithClientIdAndSecret.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testCreateAuthorizationWithoutArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testCreateFork.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testCreateGist.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testCreateGistWithoutDescription.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testCreateKey.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testCreateMigration.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testCreateProject.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testCreateRepoFromTemplate.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testCreateRepoFromTemplateWithAllArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testCreateRepository.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testCreateRepositoryWithAllArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testCreateRepositoryWithAutoInit.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testEditWithAllArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testEditWithoutArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testEmails.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testFollowing.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testGetAuthorizations.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testGetEvents.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testGetGists.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testGetInvitations.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testGetIssues.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testGetIssuesWithAllArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testGetKeys.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testGetMigrations.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testGetNotification.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testGetNotifications.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testGetNotificationsWithOtherArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testGetOrganizationEvents.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testGetOrgs.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testGetRepos.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testGetReposWithArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testGetStarredGists.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testGetTeams.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testGetUserIssues.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testGetUserIssuesWithAllArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testInstallations.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testMarkNotificationsAsRead.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testStarring.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testSubscriptions.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/AuthenticatedUser.testWatching.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Authentication.testAppAuthAuthentication.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Authentication.testAppAuthTokenAuthentication.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Authentication.testAppAuthentication.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Authentication.testAppInstallationAuthAuthentication.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Authentication.testAppUserAuthentication.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Authentication.testAuthorizationHeaderWithLogin.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Authentication.testAuthorizationHeaderWithToken.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Authentication.testBasicAuthentication.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Authentication.testJWTAuthentication.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Authentication.testLoginAuthentication.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Authentication.testNoAuthentication.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Authentication.testOAuthAuthentication.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Authentication.testTokenAuthentication.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Authentication.testUserAgent.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Authorization.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Authorization.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Authorization.testEdit.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Autolink.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/BadAttributes.testBadAttributeInClassAttribute.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/BadAttributes.testBadAttributeTransformation.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/BadAttributes.testBadSimpleAttribute.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/BadAttributes.testBadSimpleAttributeInList.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/BadAttributes.testBadTransformedAttribute.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/BadAttributes.testBadTransformedAttributeInDict.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/BadAttributes.testBadTransformedAttributeInList.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/BadAttributes.testIssue195.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testAddRequiredSignatures.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testAddTeamPushRestrictions.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testAddUserPushRestrictions.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testAdminEnforcement.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testAllowDeletions.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testCommitCommentsOnLine.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testEditProtection.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testEditProtectionDismissalUsersWithUserOwnedBranch.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testEditProtectionPushRestrictionsAndDismissalUser.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testEditProtectionPushRestrictionsWithUserOwnedBranch.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testEditRequiredPullRequestReviews.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testEditRequiredPullRequestReviewsWithTooLargeApprovingReviewCount.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testEditRequiredPullRequestReviewsWithUserBranchAndDismissalUsers.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testEditRequiredStatusChecks.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testGetRequiredSignatures.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testProtectedAttributes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testRemoveProtection.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testRemovePushRestrictions.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testRemoveRequiredPullRequestReviews.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testRemoveRequiredSignatures.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testRemoveRequiredStatusChecks.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testRemoveTeamPushRestrictions.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testRemoveUserPushRestrictions.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testReplaceTeamPushRestrictions.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Branch.testReplaceUserPushRestrictions.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/BranchProtection.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckRun.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckRun.testCheckRunAnnotationAttributes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckRun.testCheckRunOutputAttributes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckRun.testCreateCheckRunCompleted.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckRun.testCreateCheckRunInProgress.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckRun.testGetCheckRunsForRef.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckRun.testGetCheckRunsForRefFilterByCheckName.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckRun.testGetCheckRunsForRefFilterByFilter.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckRun.testGetCheckRunsForRefFilterByStatus.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckRun.testListCheckRunAnnotations.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckRun.testUpdateCheckRunAll.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckRun.testUpdateCheckRunFailure.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckRun.testUpdateCheckRunSuccess.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckSuite.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckSuite.testCheckSuiteRerequest.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckSuite.testCreateCheckSuite.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckSuite.testGetCheckRuns.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckSuite.testGetCheckRunsFilterByCheckName.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckSuite.testGetCheckRunsFilterByFilter.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckSuite.testGetCheckRunsFilterByStatus.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckSuite.testGetCheckSuitesForRef.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckSuite.testGetCheckSuitesForRefFilterByAppId.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckSuite.testGetCheckSuitesForRefFilterByCheckName.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CheckSuite.testUpdateCheckSuitesPreferences.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Commit.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Commit.testAttributes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Commit.testCreateComment.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Commit.testCreateCommentOnFileLine.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Commit.testCreateCommentOnFilePosition.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Commit.testCreateStatusWithAllParameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Commit.testCreateStatusWithoutOptionalParameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Commit.testGetComments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Commit.testGetPulls.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CommitCombinedStatus.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CommitComment.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CommitComment.testCreateReaction.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CommitComment.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CommitComment.testDeleteReaction.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CommitComment.testEdit.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CommitComment.testGetReactions.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/CommitStatus.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ConditionalRequestUpdate.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ConditionalRequestUpdate.testDidNotUpdate.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ConditionalRequestUpdate.testDidUpdate.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ConditionalRequestUpdate.testUpdateObjectWithoutEtag.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ContentFile.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/DependabotAlert.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/DependabotAlert.testAttributes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/DependabotAlert.testGetAlertsWithAllArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/DependabotAlert.testMultipleAlerts.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/DependabotAlert.testRepr.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/DependabotAlert.testUpdateAlertDismissed.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/DependabotAlert.testUpdateAlertOpen.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Deployment.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/DeploymentStatus.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/DeploymentStatus.testCreate.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/DeploymentStatus.testGetStatuses.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Download.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Download.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Enterprise.testHttp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Enterprise.testHttps.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Enterprise.testLongUrl.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Enterprise.testSpecificPort.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/EnterpriseAdmin.testGetConsumedLicenses.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/EnterpriseAdmin.testGetEnterpriseUsers.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Environment.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Environment.testCreateEnvironment.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Environment.testDeleteEnvironment.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Environment.testEnvironmentSecret.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Environment.testEnvironmentSecrets.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Environment.testEnvironmentVariable.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Environment.testEnvironmentVariables.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Environment.testGetEnvironments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Environment.testReviewers.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Environment.testUpdateEnvironment.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Equality.testBranchEquality.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Equality.testUserDifference.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Equality.testUserEquality.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Event.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Exceptions.testBadAuthentication.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Exceptions.testInvalidInput.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Exceptions.testJSONParseError.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Exceptions.testNonJsonDataReturnedByGithub.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Exceptions.testUnknownObject.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Exceptions.testUnknownUser.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ExposeAllAttributes.testAllClasses.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Gist.testAttributes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Gist.testCreateComment.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Gist.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Gist.testDeleteFile.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Gist.testEditWithAllParameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Gist.testEditWithoutParameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Gist.testFork.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Gist.testGetComments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Gist.testRenameFile.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Gist.testStarring.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GistComment.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GistComment.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GistComment.testEdit.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GitBlob.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GitCommit.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GitMembership.testGetMembership.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GitRef.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GitRef.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GitRef.testEdit.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GitRef.testEditWithForce.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GitRelease.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GitRelease.testCreateGitTagAndRelease.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GitRelease.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GitRelease.testGetAssets.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GitRelease.testGetLatestRelease.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GitRelease.testGetRelease.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GitRelease.testUpdate.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GitRelease.testUploadAsset.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GitRelease.testUploadAssetFileLike.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GitRelease.testUploadAssetFromMemory.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GitRelease.testUploadAssetWithName.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GitTag.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GitTree.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetEmojis.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetEvents.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetGists.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetGistsWithSince.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetGitignoreTemplate.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetGitignoreTemplates.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetGlobalAdvisories.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetGlobalAdvisoriesByCVE.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetGlobalAdvisoriesByGHSA.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetGlobalAdvisoriesManyFilters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetHook.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetHookDeliveries.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetHookDelivery.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetHooks.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetLicense.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetLicenses.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetOrganizations.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetOrganizationsSince.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetRepoFromFullName.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetRepoFromId.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetRepos.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetReposSince.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetUserById.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetUsers.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testGetUsersSince.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testSearchRepos.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testSearchUserByEmail.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Github.testSearchUsers.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GithubApp.testGetAuthenticatedApp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GithubApp.testGetPublicApp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GithubIntegration.testAppAuth.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GithubIntegration.testDeprecatedAppAuth.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GithubIntegration.testGetAccessToken.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GithubIntegration.testGetAccessTokenForNoInstallation.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GithubIntegration.testGetAccessTokenWithExpiredJWT.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GithubIntegration.testGetAccessTokenWithInvalidData.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GithubIntegration.testGetAccessTokenWithInvalidPermissions.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GithubIntegration.testGetApp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GithubIntegration.testGetAppInstallation.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GithubIntegration.testGetGithubForInstallation.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GithubIntegration.testGetInstallationNotFound.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GithubIntegration.testGetInstallationWithExpiredJWT.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GithubIntegration.testGetInstallations.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GithubIntegration.testGetOrgInstallation.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GithubIntegration.testGetRepoInstallation.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GithubIntegration.testGetUserInstallation.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GlobalAdvisory.testAttributes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/GlobalAdvisory.testNewlyReleased.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Hook.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Hook.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Hook.testEditWithAllParameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Hook.testEditWithMinimalParameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Hook.testPing.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Hook.testTest.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Installation.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Installation.testGetGithubForInstallation.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Installation.testGetRepos.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testAddAndRemoveAssignees.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testAddAndRemoveLabels.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testAddAndRemoveLabelsWithStringArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testAttributes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testCreateComment.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testCreateReaction.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testDeleteAndSetLabels.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testDeleteAndSetLabelsWithStringArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testDeleteReaction.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testEditResetAssignee.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testEditResetMilestone.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testEditWithAllParameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testEditWithStateReasonNotPlanned.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testEditWithStateReasonReopened.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testEditWithoutParameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testGetComments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testGetCommentsSince.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testGetEvents.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testGetLabels.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testGetReactions.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testGetTimeline.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testLock.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue.testUnlock.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue131.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue131.testGetPullWithOrgHeadUser.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue131.testGetPullsWithOrgHeadUser.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue133.testGetPageWithoutInitialArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue134.testGetAuthorizationsFailsWhenAutenticatedThroughOAuth.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue134.testGetAuthorizationsSucceedsWhenAutenticatedThroughLoginPassword.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue134.testGetOAuthScopesFromHeader.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue139.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue139.testCompletion.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue140.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue140.testGetDirContents.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue140.testGetDirContentsThenLazyCompletionOfFile.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue140.testGetDirContentsWithRef.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue140.testGetFileContents.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue142.testDecodeJson.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue174.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue174.testGetDirContentsWhithHttpRedirect.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue214.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue214.testAssignees.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue214.testCollaborators.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue214.testCreateIssue.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue214.testEditIssue.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue214.testGetIssues.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue216.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue216.testIteration.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue278.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue278.testIteration.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue33.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue33.testClosedIssues.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue33.testOpenIssues.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue494.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue50.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue50.testAddLabelToIssue.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue50.testCreateIssueWithLabel.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue50.testCreateLabel.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue50.testGetIssuesWithLabel.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue50.testGetLabel.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue50.testGetLabels.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue50.testIssueGetLabels.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue50.testRemoveLabelFromIssue.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue50.testSetIssueLabels.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue54.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue54.testConversion.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue572.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue572.testIssueAsPullRequest.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue572.testPullReqeustAsIssue.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue80.testIgnoreHttpsFromGithubEnterprise.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue80.testIgnoreHttpsFromGithubEnterpriseWithPort.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue823.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue823.testGetPendingInvitationAttributes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue87.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue87.testCreateIssueWithEscapedPercentInBody.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue87.testCreateIssueWithEscapedPercentInTitle.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue87.testCreateIssueWithPercentInBody.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue87.testCreateIssueWithPercentInTitle.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue937.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue937.testCollaboratorsAffiliation.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue945.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Issue945.testReservedPaginatedListAttributePreservation.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/IssueComment.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/IssueComment.testCreateReaction.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/IssueComment.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/IssueComment.testDeleteReaction.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/IssueComment.testEdit.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/IssueComment.testGetReactions.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/IssueEvent.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Label.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Label.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Label.testEdit.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/LazyRepository.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/LazyRepository.testChangeAutomateFixWhenNoVulnerabilityAlert.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/LazyRepository.testDisableAutomatedSecurityFixes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/LazyRepository.testDisableVulnerabilityAlert.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/LazyRepository.testEnableAutomatedSecurityFixes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/LazyRepository.testEnableVulnerabilityAlert.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/LazyRepository.testGetIssues.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/LazyRepository.testGetUser.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/LazyRepository.testGetVulnerabilityAlert.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/LazyRepository.testGetVulnerabilityAlertWhenTurnedOff.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/LazyRepository.testOwner.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/License.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Logging.testLoggingWithBaseUrl.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Logging.testLoggingWithBasicAuthentication.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Logging.testLoggingWithOAuthAuthentication.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Logging.testLoggingWithoutAuthentication.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Markdown.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Markdown.testRenderGithubFlavoredMarkdown.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Markdown.testRenderMarkdown.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Migration.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Migration.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Migration.testGetArchiveUrlWhenDeleted.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Migration.testGetArchiveUrlWhenExported.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Migration.testGetArchiveUrlWhenNotExported.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Migration.testGetStatus.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Migration.testUnlockRepo.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Milestone.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Milestone.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Milestone.testEditWithAllParameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Milestone.testEditWithMinimalParameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Milestone.testGetLabels.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.testAttributesOfOtherUser.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.testGetEvents.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.testGetFollowers.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.testGetFollowing.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.testGetGists.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.testGetKeys.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.testGetOrganizationMembership.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.testGetOrganizationMembershipNotMember.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.testGetOrgs.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.testGetPublicEvents.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.testGetPublicReceivedEvents.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.testGetReceivedEvents.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.testGetRepo.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.testGetRepos.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.testGetReposWithAllArgs.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.testGetStarred.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.testGetSubscriptions.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.testGetWatched.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.testHasInFollowing.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser.testUserEquality.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser1430.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/NamedUser1430.testGetProjects.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Notification.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Notification.testMarkAsDone.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Notification.testMarkAsRead.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testAddMembersAdminRole.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testAddMembersDefaultRole.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testCreateActionsSecret.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testCreateCustomProperties.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testCreateCustomProperty.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testCreateCustomPropertyValues.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testCreateDependabotSecret.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testCreateDependabotSecretSelected.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testCreateFork.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testCreateHookWithAllParameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testCreateHookWithMinimalParameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testCreateMigration.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testCreateRepoFromTemplate.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testCreateRepoFromTemplateWithAllArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testCreateRepoWithAllArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testCreateRepoWithMinimalArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testCreateRepositoryWithAutoInit.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testCreateSecretSelected.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testCreateTeam.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testCreateTeamWithAllArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testCreateVariable.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testCreateVariableSelected.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testDeleteHook.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testEditHookWithAllParameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testEditHookWithMinimalParameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testEditWithAllArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testEditWithoutArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetCustomProperties.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetCustomProperty.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetDependabotAlerts.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetDependabotAlertsWithAllArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetDependabotSecrets.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetEvents.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetHook.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetHookDeliveries.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetHookDelivery.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetHooks.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetInstallations.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetIssues.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetIssuesWithAllArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetMembers.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetMigrations.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetOutsideCollaborators.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetPublicMembers.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetRepos.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetReposSorted.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetReposWithType.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetSecret.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetSecrets.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetTeamBySlug.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetTeams.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetVariable.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testGetVariables.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testInviteUserAsNonOwner.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testInviteUserByEmail.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testInviteUserByName.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testInviteUserWithBoth.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testInviteUserWithRoleAndTeam.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testIssue2030CreateProject.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testListCustomPropertyValues.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testMembers.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testOrgGetSecretAssertion.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testOrgSecretEdit.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testOrgVariable.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testOutsideCollaborators.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testPublicMembers.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization.testRemoveCustomProperty.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization1437.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization1437.testCreateProject.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization2072.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Organization2072.testCancelInvitation.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/OrganizationHasInMembers.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testCustomPerPage.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testCustomPerPageWithGetPage.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testCustomPerPageWithNoUrlParams2.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testGetFirstPage.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testGetThirdPage.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testGettingTheReversedListDoesNotModifyTheOriginalList.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testIntIndexingAfterIteration.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testIntIndexingInFirstPage.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testIntIndexingInThirdPage.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testInterruptedIteration.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testInterruptedIterationInSlice.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testIteration.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testIterationWithPrefetchedFirstPage.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testNoFirstPage.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testReversedIterationSupportsIterator.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testReversedIterationWithMultiplePages.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testReversedIterationWithSinglePage.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testSeveralIterations.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testSliceIndexingInFirstPage.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testSliceIndexingUntilEnd.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testSliceIndexingUntilFourthPage.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testTotalCountWithDictionary.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PaginatedList.testTotalCountWithNoLastPage.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Permissions.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Persistence.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Persistence.testLoadAndUpdate.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PoolSize.testReturnsRepoAfterSettingPoolSize.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PoolSize.testReturnsRepoAfterSettingPoolSizeHttp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Project.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Project.testCreateCardFromIssue.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Project.testCreateCardWithNote.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Project.testCreateColumn.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Project.testEditCardArchived.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Project.testEditCardNote.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Project.testEditCardWithoutParameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Project.testGetAllProjectCards.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Project.testGetOrganizationProjects.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Project.testGetProject.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Project.testGetProjectCardContent.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Project.testGetRepositoryProjects.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Project.testProjectAttributes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Project.testProjectCardAttributes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Project.testProjectCardDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Project.testProjectCardMove.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Project.testProjectColumnAttributes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Project1434.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Project1434.testEditWithAllParameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Project1434.testEditWithoutParameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ProjectColumn.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ProjectColumn.testCreateCard.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ProjectColumn.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ProjectColumn.testEdit.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ProjectColumn.testGetAllCards.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ProjectColumn.testGetArchivedCards.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ProjectColumn.testGetCards.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ProjectColumn.testGetNotArchivedCards.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ProjectColumn.testGetProjectColumn.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ProjectColumn.testMoveAfter.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ProjectColumn.testMoveFirst.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ProjectColumn.testMoveLast.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PublicKey.testAttributes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PublicKey.testAttributes_with_int_key_id.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testAddAndRemoveAssignees.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testAddAndRemoveLabels.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testAddAndRemoveLabelsWithStringArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testCreateComment.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testCreateIssueComment.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testCreateMultilineReviewComment.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testCreateMultilineReviewCommentAsSuggestion.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testCreateMultilineReviewCommentChoosingSide.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testCreateReviewCommentInReplyTo.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testCreateReviewCommentSubjectType.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testDeleteAndSetLabels.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testDeleteAndSetLabelsWithStringArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testEditWithAllArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testEditWithoutArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testForceDeleteBranch.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testGetComments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testGetCommits.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testGetFiles.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testGetIssueComment.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testGetIssueComments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testGetIssueEvents.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testGetLabels.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testGetReviewComments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testMerge.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testMergeWithCommitMessage.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testRestoreBranch.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testReviewRequests.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest.testUpdateBranch.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest1168.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest1168.testGetIssue.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest1168.testGetPullRequest.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest1169.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest1169.testReviewApproveWithoutBody.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest1375.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest1375.testCreateReviewCommentReply.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest1682.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest1682.test_no_parameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest1682.test_object_parameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest1682.test_string_parameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest1684.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest1684.testDeleteRunnerId.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest1684.testDeleteRunnerObject.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest1684.testGetRunners.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest2408.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequest2408.test_get_workflow_runs.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequestComment.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequestComment.testCreateReaction.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequestComment.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequestComment.testDeleteReaction.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequestComment.testEdit.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequestComment.testGetReactions.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequestFile.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequestReview.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequestReview.testAttributes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequestReview.testDismiss.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequestReview.testEdit.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequestReview1856.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/PullRequestReview1856.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RateLimiting.testGetRateLimit.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RateLimiting.testRateLimiting.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RateLimiting.testResetTime.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RawData.testCompletedObject.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RawData.testNonCompletableObject.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RawData.testNotYetCompletedObject.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Reaction.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Reaction.testAttributes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Reaction.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ReleaseAsset.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ReleaseAsset.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ReleaseAsset.testUpdate.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ReleaseModify.testCreateGitTagAndRelease.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ReleaseModify.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ReleaseModify.testUpdate.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ReleaseModify.testUploadAsset.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ReleaseModify.testUploadAssetFileLike.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ReleaseModify.testUploadAssetFromMemory.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ReleaseModify.testUploadAssetWithName.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ReleaseRead.testAttributes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ReleaseRead.testGetAssets.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ReleaseRead.testGetLatestRelease.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/ReleaseRead.testGetRelease.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testAddToCollaboratorsCustomRole.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testAssignees.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testBadSubscribePubSubHubbub.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCodeScanAlerts.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCollaboratorPermission.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCollaboratorPermissionNoPushAccess.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCollaborators.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCompare.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCompareCommitPagination.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateAutolink.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateDeployment.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateFile.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateFork.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateForkOrg.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateGitBlob.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateGitCommit.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateGitCommitWithAllArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateGitCommitWithParents.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateGitRef.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateGitRelease.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateGitReleaseGenerateReleaseNotes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateGitReleaseWithAllArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateGitTag.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateGitTagWithAllArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateGitTree.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateGitTreeWithBaseTree.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateGitTreeWithNullSha.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateGitTreeWithSha.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateHookWithAllParameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateHookWithMinimalParameters.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateIssue.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateIssueWithAllArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateIssueWithAllArgumentsStringLabel.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateKey.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateLabel.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateMilestone.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateMilestoneWithMinimalArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateProject.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreatePull.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreatePullFromIssue.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateRepoActionsSecret.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateRepoDependabotSecret.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateRepositoryDispatch.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testCreateSourceImport.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testDeleteFile.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testDeleteSecret.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testEditWithAllArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testEditWithDefaultBranch.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testEditWithoutArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetArchiveLink.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetAutolinks.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetBranch.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetComments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetCommits.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetCommitsWithArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetCommitsWithAuthor.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetCommitsWithSinceUntil.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetContents.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetContentsDir.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetContentsDirWithSlash.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetContentsWithRef.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetContributors.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetCustomProperties.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetDeployments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetDownloads.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetEvents.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetForks.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetGitRef.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetGitRefWithIssue102Reverted.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetGitRefs.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetGitTreeWithRecursive.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetHookDeliveries.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetHookDelivery.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetHooks.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetIssues.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetIssuesComments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetIssuesEvents.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetIssuesWithArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetIssuesWithWildcards.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetKeys.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetLabel.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetLabels.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetLanguages.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetLicense.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetMatchingRefs.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetMilestones.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetMilestonesWithArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetNetworkEvents.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetPendingInvitations.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetPulls.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetPullsComments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetPullsWithArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetRepositoryWith301Redirect.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetSourceImport.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetStargazers.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetStargazersWithDates.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetSubscribers.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetTeams.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetTopics.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetWatchers.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetWorkflowId.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetWorkflowRuns.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetWorkflowRunsCreated.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testGetWorkflows.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testLegacySearchIssues.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testMarkNotificationsAsRead.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testMergeWithConflict.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testMergeWithMessage.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testMergeWithNothingToDo.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testMergeWithoutMessage.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testRemoveAutolink.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testRemoveInvitation.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testRenameBranchObject.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testRenameBranchString.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testReplaceTopics.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testRepoGetSecretAssertion.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testRepoSecrets.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testRepoVariable.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testRepoVariables.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testSearchIssues.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testStatisticsCodeFrequency.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testStatisticsCommitActivity.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testStatisticsContributors.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testStatisticsParticipation.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testStatisticsPunchCard.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testSubscribePubSubHubbub.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testUnsubscribePubSubHubbub.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testUpdateCustomProperties.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Repository.testUpdateFile.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RepositoryAdvisory.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RepositoryAdvisory.testAddVulnerability.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RepositoryAdvisory.testCreateRepositoryAdvisory.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RepositoryAdvisory.testGetAdvisories.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RepositoryAdvisory.testOfferCredit.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RepositoryAdvisory.testOfferCredits.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RepositoryAdvisory.testRemoveCredit.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RepositoryAdvisory.testRepositoryWithNoAdvisories.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RepositoryAdvisory.testUpdateRepositoryAdvisory.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RepositoryAdvisory.testUpdateSingleFieldDoesNotRemoveOtherFields.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RepositoryKey.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RepositoryKey.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Requester.testBaseUrlHostRedirection.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Requester.testBaseUrlPortRedirection.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Requester.testBaseUrlPrefixRedirection.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Requester.testBaseUrlSchemeRedirection.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Requester.testLoggingRedirection.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RequesterThrottled.testShouldDeferRequests.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RequesterThrottled.testShouldDeferWrites.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RequesterUnThrottled.testShouldNotDeferRequests.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RequiredPullRequestReviews.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RequiredPullRequestReviews.testOrganizationOwnedTeam.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/RequiredStatusChecks.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Retry.testRaisesRetryErrorAfterMaxRetries.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Retry.testReturnsRepoAfter1Retry.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Retry.testReturnsRepoAfter3Retries.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Retry.testReturnsRepoAfterSettingRetryHttp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Retry.testShouldNotRetryWhenStatusNotOnList.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Search.testGetPageOnSearchUsers.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Search.testPaginateSearchCommits.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Search.testPaginateSearchTopics.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Search.testPaginateSearchUsers.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Search.testSearchCode.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Search.testSearchCommits.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Search.testSearchHighlightingCode.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Search.testSearchIssues.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Search.testSearchRepos.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Search.testSearchReposWithNoResults.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Search.testSearchTopics.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Search.testSearchUsers.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Search.testUrlquotingOfQualifiers.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Search.testUrlquotingOfQuery.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/SecurityAndAnalysis.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/SelfHostedActionsRunner.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/SelfHostedActionsRunner.testAttributes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/SourceImport.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/SourceImport.testUpdate.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/SpecificExceptions.test2FARequired.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/SpecificExceptions.testAuthenticatedRateLimitExceeded.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/SpecificExceptions.testBadCredentials.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/SpecificExceptions.testBadUserAgent.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/SpecificExceptions.testRateLimitExceeded.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/SpecificExceptions.testUnknownObject.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Tag.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Team.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Team.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Team.testDiscussions.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Team.testEditWithAllArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Team.testEditWithoutArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Team.testGetTeams.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Team.testMembers.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Team.testRepoPermission.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Team.testRepos.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Team.testTeamMembership.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Team.testUpdateTeamRepository.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Topic.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Traffic.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Traffic.testGetClones.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Traffic.testGetPaths.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Traffic.testGetReferrers.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Traffic.testGetViews.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/UserKey.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/UserKey.testDelete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Workflow.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Workflow.testCreateDispatchForNonTriggerEnabled.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Workflow.testCreateDispatchWithBranch.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Workflow.testCreateDispatchWithString.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Workflow.testCreateDispatchWithTag.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Workflow.testGetRunsWithCreated.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Workflow.testGetRunsWithHeadSha.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Workflow.testGetRunsWithNoArguments.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Workflow.testGetRunsWithObjects.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/Workflow.testGetRunsWithStrings.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/WorkflowJob.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/WorkflowJob.testAttributes.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/WorkflowRun.setUp.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/WorkflowRun.test_cancel.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/WorkflowRun.test_delete.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/WorkflowRun.test_jobs.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/WorkflowRun.test_rerun.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/WorkflowRun.test_rerun_failed_jobs.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/WorkflowRun.test_rerun_with_successful_run.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/ReplayData/WorkflowRun.test_timing.txt +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/RepositoryAdvisory.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/RequiredPullRequestReviews.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/RequiredStatusChecks.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Retry.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Search.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/SelfHostedActionsRunner.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/SourceImport.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Tag.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Team.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Topic.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Traffic.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/UserKey.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/Workflow.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/WorkflowJob.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/__init__.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tests/conftest.py +0 -0
- {pygithub-2.4.0 → pygithub-2.5.0}/tox.ini +0 -0
|
@@ -13,9 +13,9 @@ jobs:
|
|
|
13
13
|
build-pkg:
|
|
14
14
|
runs-on: ubuntu-latest
|
|
15
15
|
steps:
|
|
16
|
-
- uses: actions/checkout@
|
|
16
|
+
- uses: actions/checkout@v4
|
|
17
17
|
- name: Set up Python
|
|
18
|
-
uses: actions/setup-python@
|
|
18
|
+
uses: actions/setup-python@v5
|
|
19
19
|
with:
|
|
20
20
|
python-version: '3.x'
|
|
21
21
|
|
|
@@ -26,7 +26,7 @@ jobs:
|
|
|
26
26
|
- name: Check 📦 package
|
|
27
27
|
run: twine check dist/*
|
|
28
28
|
|
|
29
|
-
- uses: actions/upload-artifact@
|
|
29
|
+
- uses: actions/upload-artifact@v4
|
|
30
30
|
with:
|
|
31
31
|
name: ${{ inputs.artifact-name }}
|
|
32
32
|
path: dist
|
|
@@ -33,7 +33,17 @@ jobs:
|
|
|
33
33
|
- uses: actions/setup-python@v4
|
|
34
34
|
with:
|
|
35
35
|
python-version: "3.x"
|
|
36
|
-
|
|
36
|
+
# FIXME: pin pre-commit<4 pending PyCQA/docformatter#287
|
|
37
|
+
- name: install pre-commit
|
|
38
|
+
run: python -m pip install 'pre-commit<4'
|
|
39
|
+
- name: show environment
|
|
40
|
+
run: python -m pip freeze --local
|
|
41
|
+
- uses: actions/cache@v4
|
|
42
|
+
with:
|
|
43
|
+
path: ~/.cache/pre-commit
|
|
44
|
+
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
|
|
45
|
+
- name: run pre-commit
|
|
46
|
+
run: pre-commit run --show-diff-on-failure --color=always --all-files
|
|
37
47
|
|
|
38
48
|
docs:
|
|
39
49
|
runs-on: ubuntu-latest
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: Top issues
|
|
2
|
+
on:
|
|
3
|
+
schedule:
|
|
4
|
+
- cron: '0 0 */1 * *'
|
|
5
|
+
workflow_dispatch:
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
ShowAndLabelTopIssues:
|
|
9
|
+
name: Display and label top issues
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
if: github.repository == 'PyGithub/PyGithub'
|
|
12
|
+
steps:
|
|
13
|
+
- name: Run top issues action
|
|
14
|
+
uses: rickstaa/top-issues-action@7e8dda5d5ae3087670f9094b9724a9a091fc3ba1 # v1.3.101
|
|
15
|
+
env:
|
|
16
|
+
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
17
|
+
with:
|
|
18
|
+
label: true
|
|
19
|
+
dashboard: true
|
|
20
|
+
dashboard_show_total_reactions: true
|
|
21
|
+
top_issues: true
|
|
22
|
+
top_pull_requests: true
|
|
23
|
+
top_list_size: 10
|
|
@@ -14,11 +14,11 @@ tox.ini
|
|
|
14
14
|
.github/FUNDING.yml
|
|
15
15
|
.github/dependabot.yml
|
|
16
16
|
.github/release-drafter.yml
|
|
17
|
-
.github/stale.yml
|
|
18
17
|
.github/workflows/_build-pkg.yml
|
|
19
18
|
.github/workflows/ci.yml
|
|
20
19
|
.github/workflows/lint.yml
|
|
21
20
|
.github/workflows/pypi-release.yml
|
|
21
|
+
.github/workflows/top-issues.yaml
|
|
22
22
|
PyGithub.egg-info/PKG-INFO
|
|
23
23
|
PyGithub.egg-info/SOURCES.txt
|
|
24
24
|
PyGithub.egg-info/dependency_links.txt
|
|
@@ -87,6 +87,8 @@ github/DependabotAlertDependency.py
|
|
|
87
87
|
github/DependabotAlertVulnerability.py
|
|
88
88
|
github/Deployment.py
|
|
89
89
|
github/DeploymentStatus.py
|
|
90
|
+
github/DiscussionBase.py
|
|
91
|
+
github/DiscussionCommentBase.py
|
|
90
92
|
github/Download.py
|
|
91
93
|
github/Enterprise.py
|
|
92
94
|
github/EnterpriseConsumedLicenses.py
|
|
@@ -165,6 +167,9 @@ github/Reaction.py
|
|
|
165
167
|
github/Referrer.py
|
|
166
168
|
github/Repository.py
|
|
167
169
|
github/RepositoryAdvisory.py
|
|
170
|
+
github/RepositoryDiscussion.py
|
|
171
|
+
github/RepositoryDiscussionCategory.py
|
|
172
|
+
github/RepositoryDiscussionComment.py
|
|
168
173
|
github/RepositoryKey.py
|
|
169
174
|
github/RepositoryPreferences.py
|
|
170
175
|
github/Requester.py
|
|
@@ -313,6 +318,7 @@ tests/Reaction.py
|
|
|
313
318
|
tests/ReleaseAsset.py
|
|
314
319
|
tests/Repository.py
|
|
315
320
|
tests/RepositoryAdvisory.py
|
|
321
|
+
tests/RepositoryDiscussion.py
|
|
316
322
|
tests/RepositoryKey.py
|
|
317
323
|
tests/Requester.py
|
|
318
324
|
tests/RequiredPullRequestReviews.py
|
|
@@ -375,6 +381,7 @@ tests/ReplayData/AuthenticatedUser.testGetInvitations.txt
|
|
|
375
381
|
tests/ReplayData/AuthenticatedUser.testGetIssues.txt
|
|
376
382
|
tests/ReplayData/AuthenticatedUser.testGetIssuesWithAllArguments.txt
|
|
377
383
|
tests/ReplayData/AuthenticatedUser.testGetKeys.txt
|
|
384
|
+
tests/ReplayData/AuthenticatedUser.testGetMemberships.txt
|
|
378
385
|
tests/ReplayData/AuthenticatedUser.testGetMigrations.txt
|
|
379
386
|
tests/ReplayData/AuthenticatedUser.testGetNotification.txt
|
|
380
387
|
tests/ReplayData/AuthenticatedUser.testGetNotifications.txt
|
|
@@ -586,6 +593,7 @@ tests/ReplayData/Github.testGetRepoFromFullName.txt
|
|
|
586
593
|
tests/ReplayData/Github.testGetRepoFromId.txt
|
|
587
594
|
tests/ReplayData/Github.testGetRepos.txt
|
|
588
595
|
tests/ReplayData/Github.testGetReposSince.txt
|
|
596
|
+
tests/ReplayData/Github.testGetRepositoryDiscussion.txt
|
|
589
597
|
tests/ReplayData/Github.testGetUserById.txt
|
|
590
598
|
tests/ReplayData/Github.testGetUsers.txt
|
|
591
599
|
tests/ReplayData/Github.testGetUsersSince.txt
|
|
@@ -613,8 +621,16 @@ tests/ReplayData/GithubIntegration.testGetUserInstallation.txt
|
|
|
613
621
|
tests/ReplayData/GlobalAdvisory.testAttributes.txt
|
|
614
622
|
tests/ReplayData/GlobalAdvisory.testNewlyReleased.txt
|
|
615
623
|
tests/ReplayData/GraphQl.testDefaultUrl.txt
|
|
624
|
+
tests/ReplayData/GraphQl.testMutation.txt
|
|
625
|
+
tests/ReplayData/GraphQl.testMutationClass.txt
|
|
626
|
+
tests/ReplayData/GraphQl.testNode.txt
|
|
627
|
+
tests/ReplayData/GraphQl.testNodeClass.txt
|
|
616
628
|
tests/ReplayData/GraphQl.testOtherPort.txt
|
|
617
629
|
tests/ReplayData/GraphQl.testOtherUrl.txt
|
|
630
|
+
tests/ReplayData/GraphQl.testPaginationAndRestIntegration.txt
|
|
631
|
+
tests/ReplayData/GraphQl.testQuery.txt
|
|
632
|
+
tests/ReplayData/GraphQl.testQueryGraphQlClass.txt
|
|
633
|
+
tests/ReplayData/GraphQl.testQueryRestClass.txt
|
|
618
634
|
tests/ReplayData/Hook.setUp.txt
|
|
619
635
|
tests/ReplayData/Hook.testDelete.txt
|
|
620
636
|
tests/ReplayData/Hook.testEditWithAllParameters.txt
|
|
@@ -851,11 +867,14 @@ tests/ReplayData/Organization2072.testCancelInvitation.txt
|
|
|
851
867
|
tests/ReplayData/OrganizationHasInMembers.setUp.txt
|
|
852
868
|
tests/ReplayData/PaginatedList.setUp.txt
|
|
853
869
|
tests/ReplayData/PaginatedList.testCustomPerPage.txt
|
|
870
|
+
tests/ReplayData/PaginatedList.testCustomPerPageIteration.txt
|
|
871
|
+
tests/ReplayData/PaginatedList.testCustomPerPageReversedIteration.txt
|
|
854
872
|
tests/ReplayData/PaginatedList.testCustomPerPageWithGetPage.txt
|
|
855
873
|
tests/ReplayData/PaginatedList.testCustomPerPageWithNoUrlParams2.txt
|
|
856
874
|
tests/ReplayData/PaginatedList.testGetFirstPage.txt
|
|
857
875
|
tests/ReplayData/PaginatedList.testGetThirdPage.txt
|
|
858
876
|
tests/ReplayData/PaginatedList.testGettingTheReversedListDoesNotModifyTheOriginalList.txt
|
|
877
|
+
tests/ReplayData/PaginatedList.testGraphQlPagination.txt
|
|
859
878
|
tests/ReplayData/PaginatedList.testIntIndexingAfterIteration.txt
|
|
860
879
|
tests/ReplayData/PaginatedList.testIntIndexingInFirstPage.txt
|
|
861
880
|
tests/ReplayData/PaginatedList.testIntIndexingInThirdPage.txt
|
|
@@ -1066,6 +1085,11 @@ tests/ReplayData/Repository.testGetContentsWithRef.txt
|
|
|
1066
1085
|
tests/ReplayData/Repository.testGetContributors.txt
|
|
1067
1086
|
tests/ReplayData/Repository.testGetCustomProperties.txt
|
|
1068
1087
|
tests/ReplayData/Repository.testGetDeployments.txt
|
|
1088
|
+
tests/ReplayData/Repository.testGetDiscussion.txt
|
|
1089
|
+
tests/ReplayData/Repository.testGetDiscussions.txt
|
|
1090
|
+
tests/ReplayData/Repository.testGetDiscussionsByAnswered.txt
|
|
1091
|
+
tests/ReplayData/Repository.testGetDiscussionsByCategory.txt
|
|
1092
|
+
tests/ReplayData/Repository.testGetDiscussionsByStates.txt
|
|
1069
1093
|
tests/ReplayData/Repository.testGetDownloads.txt
|
|
1070
1094
|
tests/ReplayData/Repository.testGetEvents.txt
|
|
1071
1095
|
tests/ReplayData/Repository.testGetForks.txt
|
|
@@ -1141,6 +1165,10 @@ tests/ReplayData/RepositoryAdvisory.testRemoveCredit.txt
|
|
|
1141
1165
|
tests/ReplayData/RepositoryAdvisory.testRepositoryWithNoAdvisories.txt
|
|
1142
1166
|
tests/ReplayData/RepositoryAdvisory.testUpdateRepositoryAdvisory.txt
|
|
1143
1167
|
tests/ReplayData/RepositoryAdvisory.testUpdateSingleFieldDoesNotRemoveOtherFields.txt
|
|
1168
|
+
tests/ReplayData/RepositoryDiscussion.setUp.txt
|
|
1169
|
+
tests/ReplayData/RepositoryDiscussion.testAddAndDeleteComment.txt
|
|
1170
|
+
tests/ReplayData/RepositoryDiscussion.testGetComments.txt
|
|
1171
|
+
tests/ReplayData/RepositoryDiscussion.testGetCommentsWithoutNodeId.txt
|
|
1144
1172
|
tests/ReplayData/RepositoryKey.setUp.txt
|
|
1145
1173
|
tests/ReplayData/RepositoryKey.testDelete.txt
|
|
1146
1174
|
tests/ReplayData/Requester.testBaseUrlHostRedirection.txt
|
|
@@ -4,6 +4,49 @@ Change log
|
|
|
4
4
|
Stable versions
|
|
5
5
|
~~~~~~~~~~~~~~~
|
|
6
6
|
|
|
7
|
+
Version 2.5.0 (November 06, 2024)
|
|
8
|
+
---------------------------------
|
|
9
|
+
|
|
10
|
+
Breaking Changes
|
|
11
|
+
^^^^^^^^^^^^^^^^
|
|
12
|
+
|
|
13
|
+
* Parameters of method ``github.Requester.Requester.graphql_named_mutation`` have been renamed:
|
|
14
|
+
|
|
15
|
+
* Parameter ``variables`` renamed to ``mutation_input``
|
|
16
|
+
* Parameter ``output`` renamed to ``output_schema``
|
|
17
|
+
* Default value of parameter ``output`` has been removed
|
|
18
|
+
|
|
19
|
+
New features
|
|
20
|
+
^^^^^^^^^^^^
|
|
21
|
+
|
|
22
|
+
* Rework GraphQL mutations (#3046) (27222251)
|
|
23
|
+
* Make pagination work with GraphQL response data (#3047) (cd30e379)
|
|
24
|
+
* Add `RepositoryDiscussion` powered by GraphQL API (#3048) (29359f3c)
|
|
25
|
+
* Add `Repository.get_discussion()` to get a single Discussion (#3072) (44120b1e)
|
|
26
|
+
|
|
27
|
+
Improvements
|
|
28
|
+
^^^^^^^^^^^^
|
|
29
|
+
|
|
30
|
+
* Adds List organization memberships for the authenticated user (#3040) (cf443955)
|
|
31
|
+
* Add `actor` property to WorkflowRun (#2764) (612ba68e)
|
|
32
|
+
* Make requester a public attribute (#3056) (c44ec523)
|
|
33
|
+
|
|
34
|
+
Bug Fixes
|
|
35
|
+
^^^^^^^^^
|
|
36
|
+
|
|
37
|
+
* Fix requesting urls containing parameters with parameters dict (#2929) (e1d67ada)
|
|
38
|
+
* PullRequest.delete_branch: fix the remaining pull requests check (#3063) (72fa6278)
|
|
39
|
+
|
|
40
|
+
Maintenance
|
|
41
|
+
^^^^^^^^^^^
|
|
42
|
+
|
|
43
|
+
* Remove stale bot (510c1402)
|
|
44
|
+
* Upgrade Github actions (#3075) (323e2828)
|
|
45
|
+
* Add top issues dashboard action (#3049) (c91f26a7)
|
|
46
|
+
* Make tests pass some more years (#3045) (352c55aa)
|
|
47
|
+
* Run top issues workflow only in PyGithub repo (0d395d4e)
|
|
48
|
+
* Replace pre-commit Github action in order to pin pre-commit version (#3059) (1a05b43d)
|
|
49
|
+
|
|
7
50
|
Version 2.4.0 (August 26, 2024)
|
|
8
51
|
-------------------------------
|
|
9
52
|
|
|
@@ -39,3 +39,12 @@ Input classes
|
|
|
39
39
|
.. autoclass:: github.InputFileContent.InputFileContent
|
|
40
40
|
.. autoclass:: github.InputGitAuthor.InputGitAuthor
|
|
41
41
|
.. autoclass:: github.InputGitTreeElement.InputGitTreeElement
|
|
42
|
+
|
|
43
|
+
Raw Requests
|
|
44
|
+
------------
|
|
45
|
+
|
|
46
|
+
If you need to make requests to APIs not yet supported by PyGithub,
|
|
47
|
+
you can use the :class:`.Requester` object directly, available as :attr:`object.requester` on most PyGithub objects.
|
|
48
|
+
|
|
49
|
+
.. autoclass:: github.Requester.Requester
|
|
50
|
+
:members:
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
# Copyright 2023 Trim21 <trim21.me@gmail.com> #
|
|
49
49
|
# Copyright 2023 chantra <chantra@users.noreply.github.com> #
|
|
50
50
|
# Copyright 2024 Chris Wells <ping@cwlls.com> #
|
|
51
|
+
# Copyright 2024 Eduardo Ramírez <edu.rh90@gmail.com> #
|
|
51
52
|
# Copyright 2024 Enrico Minack <github@enrico.minack.dev> #
|
|
52
53
|
# Copyright 2024 Oskar Jansson <56458534+janssonoskar@users.noreply.github.com>#
|
|
53
54
|
# #
|
|
@@ -1066,6 +1067,17 @@ class AuthenticatedUser(CompletableGithubObject):
|
|
|
1066
1067
|
headers={"Accept": Consts.mediaTypeMigrationPreview},
|
|
1067
1068
|
)
|
|
1068
1069
|
|
|
1070
|
+
def get_organization_memberships(self) -> PaginatedList[Membership]:
|
|
1071
|
+
"""
|
|
1072
|
+
:calls: `GET /user/memberships/orgs/ <https://docs.github.com/en/rest/orgs/members#list-organization-memberships-for-the-authenticated-user>`_
|
|
1073
|
+
"""
|
|
1074
|
+
return PaginatedList(
|
|
1075
|
+
github.Membership.Membership,
|
|
1076
|
+
self._requester,
|
|
1077
|
+
"/user/memberships/orgs",
|
|
1078
|
+
None,
|
|
1079
|
+
)
|
|
1080
|
+
|
|
1069
1081
|
def get_organization_membership(self, org: str) -> Membership:
|
|
1070
1082
|
"""
|
|
1071
1083
|
:calls: `GET /user/memberships/orgs/{org} <https://docs.github.com/en/rest/reference/orgs#get-an-organization-membership-for-the-authenticated-user>`_
|
|
@@ -125,11 +125,11 @@ class Commit(CompletableGithubObject):
|
|
|
125
125
|
self._requester,
|
|
126
126
|
self.url,
|
|
127
127
|
{},
|
|
128
|
-
None,
|
|
129
|
-
"files",
|
|
130
|
-
"total_files",
|
|
131
|
-
self.raw_data,
|
|
132
|
-
self.raw_headers,
|
|
128
|
+
headers=None,
|
|
129
|
+
list_item="files",
|
|
130
|
+
total_count_item="total_files",
|
|
131
|
+
firstData=self.raw_data,
|
|
132
|
+
firstHeaders=self.raw_headers,
|
|
133
133
|
)
|
|
134
134
|
|
|
135
135
|
@property
|
|
@@ -91,11 +91,11 @@ class Comparison(CompletableGithubObject):
|
|
|
91
91
|
self._requester,
|
|
92
92
|
self.url,
|
|
93
93
|
{},
|
|
94
|
-
None,
|
|
95
|
-
"commits",
|
|
96
|
-
"total_commits",
|
|
97
|
-
self.raw_data,
|
|
98
|
-
self.raw_headers,
|
|
94
|
+
headers=None,
|
|
95
|
+
list_item="commits",
|
|
96
|
+
total_count_item="total_commits",
|
|
97
|
+
firstData=self.raw_data,
|
|
98
|
+
firstHeaders=self.raw_headers,
|
|
99
99
|
)
|
|
100
100
|
|
|
101
101
|
@property
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
############################ Copyrights and license ############################
|
|
2
|
+
# #
|
|
3
|
+
# Copyright 2012 Vincent Jacques <vincent@vincent-jacques.net> #
|
|
4
|
+
# Copyright 2012 Zearin <zearin@gonk.net> #
|
|
5
|
+
# Copyright 2013 AKFish <akfish@gmail.com> #
|
|
6
|
+
# Copyright 2013 Vincent Jacques <vincent@vincent-jacques.net> #
|
|
7
|
+
# Copyright 2014 Vincent Jacques <vincent@vincent-jacques.net> #
|
|
8
|
+
# Copyright 2016 Jannis Gebauer <ja.geb@me.com> #
|
|
9
|
+
# Copyright 2016 Peter Buckley <dx-pbuckley@users.noreply.github.com> #
|
|
10
|
+
# Copyright 2018 Wan Liuyang <tsfdye@gmail.com> #
|
|
11
|
+
# Copyright 2018 sfdye <tsfdye@gmail.com> #
|
|
12
|
+
# Copyright 2019 Steve Kowalik <steven@wedontsleep.org> #
|
|
13
|
+
# Copyright 2019 Wan Liuyang <tsfdye@gmail.com> #
|
|
14
|
+
# Copyright 2020 Steve Kowalik <steven@wedontsleep.org> #
|
|
15
|
+
# Copyright 2021 Mark Walker <mark.walker@realbuzz.com> #
|
|
16
|
+
# Copyright 2021 Steve Kowalik <steven@wedontsleep.org> #
|
|
17
|
+
# Copyright 2023 Enrico Minack <github@enrico.minack.dev> #
|
|
18
|
+
# Copyright 2023 Jirka Borovec <6035284+Borda@users.noreply.github.com> #
|
|
19
|
+
# Copyright 2023 Trim21 <trim21.me@gmail.com> #
|
|
20
|
+
# Copyright 2024 Enrico Minack <github@enrico.minack.dev> #
|
|
21
|
+
# Copyright 2024 Jirka Borovec <6035284+Borda@users.noreply.github.com> #
|
|
22
|
+
# #
|
|
23
|
+
# This file is part of PyGithub. #
|
|
24
|
+
# http://pygithub.readthedocs.io/ #
|
|
25
|
+
# #
|
|
26
|
+
# PyGithub is free software: you can redistribute it and/or modify it under #
|
|
27
|
+
# the terms of the GNU Lesser General Public License as published by the Free #
|
|
28
|
+
# Software Foundation, either version 3 of the License, or (at your option) #
|
|
29
|
+
# any later version. #
|
|
30
|
+
# #
|
|
31
|
+
# PyGithub is distributed in the hope that it will be useful, but WITHOUT ANY #
|
|
32
|
+
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS #
|
|
33
|
+
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more #
|
|
34
|
+
# details. #
|
|
35
|
+
# #
|
|
36
|
+
# You should have received a copy of the GNU Lesser General Public License #
|
|
37
|
+
# along with PyGithub. If not, see <http://www.gnu.org/licenses/>. #
|
|
38
|
+
# #
|
|
39
|
+
################################################################################
|
|
40
|
+
|
|
41
|
+
from __future__ import annotations
|
|
42
|
+
|
|
43
|
+
from datetime import datetime
|
|
44
|
+
from typing import Any
|
|
45
|
+
|
|
46
|
+
import github.GithubObject
|
|
47
|
+
import github.NamedUser
|
|
48
|
+
from github.GithubObject import Attribute, CompletableGithubObject, NotSet
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
class DiscussionBase(CompletableGithubObject):
|
|
52
|
+
"""
|
|
53
|
+
This class represents a the shared attributes between RepositoryDiscussion and TeamDiscussion
|
|
54
|
+
https://docs.github.com/en/graphql/reference/objects#discussion
|
|
55
|
+
https://docs.github.com/en/rest/reference/teams#discussions
|
|
56
|
+
"""
|
|
57
|
+
|
|
58
|
+
def _initAttributes(self) -> None:
|
|
59
|
+
self._author: Attribute[github.NamedUser.NamedUser | None] = NotSet
|
|
60
|
+
self._body: Attribute[str] = NotSet
|
|
61
|
+
self._body_html: Attribute[str] = NotSet
|
|
62
|
+
self._created_at: Attribute[datetime] = NotSet
|
|
63
|
+
self._last_edited_at: Attribute[datetime] = NotSet
|
|
64
|
+
self._number: Attribute[int] = NotSet
|
|
65
|
+
self._title: Attribute[str] = NotSet
|
|
66
|
+
self._updated_at: Attribute[datetime] = NotSet
|
|
67
|
+
self._url: Attribute[str] = NotSet
|
|
68
|
+
|
|
69
|
+
def __repr__(self) -> str:
|
|
70
|
+
return self.get__repr__({"number": self._number.value, "title": self._title.value})
|
|
71
|
+
|
|
72
|
+
@property
|
|
73
|
+
def author(self) -> github.NamedUser.NamedUser | None:
|
|
74
|
+
self._completeIfNotSet(self._author)
|
|
75
|
+
return self._author.value
|
|
76
|
+
|
|
77
|
+
@property
|
|
78
|
+
def body(self) -> str:
|
|
79
|
+
self._completeIfNotSet(self._body)
|
|
80
|
+
return self._body.value
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
def body_html(self) -> str:
|
|
84
|
+
self._completeIfNotSet(self._body_html)
|
|
85
|
+
return self._body_html.value
|
|
86
|
+
|
|
87
|
+
@property
|
|
88
|
+
def created_at(self) -> datetime:
|
|
89
|
+
self._completeIfNotSet(self._created_at)
|
|
90
|
+
return self._created_at.value
|
|
91
|
+
|
|
92
|
+
@property
|
|
93
|
+
def last_edited_at(self) -> datetime:
|
|
94
|
+
self._completeIfNotSet(self._last_edited_at)
|
|
95
|
+
return self._last_edited_at.value
|
|
96
|
+
|
|
97
|
+
@property
|
|
98
|
+
def number(self) -> int:
|
|
99
|
+
self._completeIfNotSet(self._number)
|
|
100
|
+
return self._number.value
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
def title(self) -> str:
|
|
104
|
+
self._completeIfNotSet(self._title)
|
|
105
|
+
return self._title.value
|
|
106
|
+
|
|
107
|
+
@property
|
|
108
|
+
def updated_at(self) -> datetime:
|
|
109
|
+
self._completeIfNotSet(self._updated_at)
|
|
110
|
+
return self._updated_at.value
|
|
111
|
+
|
|
112
|
+
@property
|
|
113
|
+
def url(self) -> str:
|
|
114
|
+
self._completeIfNotSet(self._url)
|
|
115
|
+
return self._url.value
|
|
116
|
+
|
|
117
|
+
def _useAttributes(self, attributes: dict[str, Any]) -> None:
|
|
118
|
+
if "author" in attributes: # pragma no branch
|
|
119
|
+
self._author = self._makeClassAttribute(github.NamedUser.NamedUser, attributes["author"])
|
|
120
|
+
if "body" in attributes: # pragma no branch
|
|
121
|
+
self._body = self._makeStringAttribute(attributes["body"])
|
|
122
|
+
if "body_html" in attributes: # pragma no branch
|
|
123
|
+
self._body_html = self._makeStringAttribute(attributes["body_html"])
|
|
124
|
+
if "created_at" in attributes: # pragma no branch
|
|
125
|
+
self._created_at = self._makeDatetimeAttribute(attributes["created_at"])
|
|
126
|
+
if "last_edited_at" in attributes: # pragma no branch
|
|
127
|
+
self._last_edited_at = self._makeDatetimeAttribute(attributes["last_edited_at"])
|
|
128
|
+
if "number" in attributes: # pragma no branch
|
|
129
|
+
self._number = self._makeIntAttribute(attributes["number"])
|
|
130
|
+
if "title" in attributes:
|
|
131
|
+
self._title = self._makeStringAttribute(attributes["title"])
|
|
132
|
+
if "updated_at" in attributes: # pragma no branch
|
|
133
|
+
self._updated_at = self._makeDatetimeAttribute(attributes["updated_at"])
|
|
134
|
+
if "url" in attributes: # pragma no branch
|
|
135
|
+
self._url = self._makeStringAttribute(attributes["url"])
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
############################ Copyrights and license ############################
|
|
2
|
+
# #
|
|
3
|
+
# Copyright 2012 Vincent Jacques <vincent@vincent-jacques.net> #
|
|
4
|
+
# Copyright 2012 Zearin <zearin@gonk.net> #
|
|
5
|
+
# Copyright 2013 AKFish <akfish@gmail.com> #
|
|
6
|
+
# Copyright 2013 Vincent Jacques <vincent@vincent-jacques.net> #
|
|
7
|
+
# Copyright 2014 Vincent Jacques <vincent@vincent-jacques.net> #
|
|
8
|
+
# Copyright 2016 Jannis Gebauer <ja.geb@me.com> #
|
|
9
|
+
# Copyright 2016 Peter Buckley <dx-pbuckley@users.noreply.github.com> #
|
|
10
|
+
# Copyright 2018 Wan Liuyang <tsfdye@gmail.com> #
|
|
11
|
+
# Copyright 2018 sfdye <tsfdye@gmail.com> #
|
|
12
|
+
# Copyright 2019 Steve Kowalik <steven@wedontsleep.org> #
|
|
13
|
+
# Copyright 2019 Wan Liuyang <tsfdye@gmail.com> #
|
|
14
|
+
# Copyright 2020 Steve Kowalik <steven@wedontsleep.org> #
|
|
15
|
+
# Copyright 2021 Mark Walker <mark.walker@realbuzz.com> #
|
|
16
|
+
# Copyright 2021 Steve Kowalik <steven@wedontsleep.org> #
|
|
17
|
+
# Copyright 2023 Enrico Minack <github@enrico.minack.dev> #
|
|
18
|
+
# Copyright 2023 Jirka Borovec <6035284+Borda@users.noreply.github.com> #
|
|
19
|
+
# Copyright 2023 Trim21 <trim21.me@gmail.com> #
|
|
20
|
+
# Copyright 2024 Enrico Minack <github@enrico.minack.dev> #
|
|
21
|
+
# Copyright 2024 Jirka Borovec <6035284+Borda@users.noreply.github.com> #
|
|
22
|
+
# #
|
|
23
|
+
# This file is part of PyGithub. #
|
|
24
|
+
# http://pygithub.readthedocs.io/ #
|
|
25
|
+
# #
|
|
26
|
+
# PyGithub is free software: you can redistribute it and/or modify it under #
|
|
27
|
+
# the terms of the GNU Lesser General Public License as published by the Free #
|
|
28
|
+
# Software Foundation, either version 3 of the License, or (at your option) #
|
|
29
|
+
# any later version. #
|
|
30
|
+
# #
|
|
31
|
+
# PyGithub is distributed in the hope that it will be useful, but WITHOUT ANY #
|
|
32
|
+
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS #
|
|
33
|
+
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more #
|
|
34
|
+
# details. #
|
|
35
|
+
# #
|
|
36
|
+
# You should have received a copy of the GNU Lesser General Public License #
|
|
37
|
+
# along with PyGithub. If not, see <http://www.gnu.org/licenses/>. #
|
|
38
|
+
# #
|
|
39
|
+
################################################################################
|
|
40
|
+
|
|
41
|
+
from __future__ import annotations
|
|
42
|
+
|
|
43
|
+
from datetime import datetime
|
|
44
|
+
from typing import Any
|
|
45
|
+
|
|
46
|
+
import github.GithubObject
|
|
47
|
+
import github.NamedUser
|
|
48
|
+
from github.GithubObject import Attribute, CompletableGithubObject, NotSet
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
class DiscussionCommentBase(CompletableGithubObject):
|
|
52
|
+
"""
|
|
53
|
+
This class represents a the shared attributes between RepositoryDiscussionComment and TeamDiscussionComment
|
|
54
|
+
https://docs.github.com/en/graphql/reference/objects#discussioncomment
|
|
55
|
+
https://docs.github.com/de/rest/teams/discussion-comments
|
|
56
|
+
"""
|
|
57
|
+
|
|
58
|
+
def _initAttributes(self) -> None:
|
|
59
|
+
self._author: Attribute[github.NamedUser.NamedUser | None] = NotSet
|
|
60
|
+
self._body: Attribute[str] = NotSet
|
|
61
|
+
self._body_html: Attribute[str] = NotSet
|
|
62
|
+
self._created_at: Attribute[datetime] = NotSet
|
|
63
|
+
self._html_url: Attribute[str] = NotSet
|
|
64
|
+
self._last_edited_at: Attribute[datetime] = NotSet
|
|
65
|
+
self._node_id: Attribute[str] = NotSet
|
|
66
|
+
self._updated_at: Attribute[datetime] = NotSet
|
|
67
|
+
self._url: Attribute[str] = NotSet
|
|
68
|
+
|
|
69
|
+
def __repr__(self) -> str:
|
|
70
|
+
return self.get__repr__({"node_id": self._node_id.value})
|
|
71
|
+
|
|
72
|
+
@property
|
|
73
|
+
def author(self) -> github.NamedUser.NamedUser | None:
|
|
74
|
+
self._completeIfNotSet(self._author)
|
|
75
|
+
return self._author.value
|
|
76
|
+
|
|
77
|
+
@property
|
|
78
|
+
def body(self) -> str:
|
|
79
|
+
self._completeIfNotSet(self._body)
|
|
80
|
+
return self._body.value
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
def body_html(self) -> str:
|
|
84
|
+
self._completeIfNotSet(self._body_html)
|
|
85
|
+
return self._body_html.value
|
|
86
|
+
|
|
87
|
+
@property
|
|
88
|
+
def created_at(self) -> datetime:
|
|
89
|
+
self._completeIfNotSet(self._created_at)
|
|
90
|
+
return self._created_at.value
|
|
91
|
+
|
|
92
|
+
@property
|
|
93
|
+
def html_url(self) -> str:
|
|
94
|
+
self._completeIfNotSet(self._html_url)
|
|
95
|
+
return self._html_url.value
|
|
96
|
+
|
|
97
|
+
@property
|
|
98
|
+
def last_edited_at(self) -> datetime:
|
|
99
|
+
self._completeIfNotSet(self._last_edited_at)
|
|
100
|
+
return self._last_edited_at.value
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
def node_id(self) -> str:
|
|
104
|
+
self._completeIfNotSet(self._node_id)
|
|
105
|
+
return self._node_id.value
|
|
106
|
+
|
|
107
|
+
@property
|
|
108
|
+
def updated_at(self) -> datetime:
|
|
109
|
+
self._completeIfNotSet(self._updated_at)
|
|
110
|
+
return self._updated_at.value
|
|
111
|
+
|
|
112
|
+
@property
|
|
113
|
+
def url(self) -> str:
|
|
114
|
+
self._completeIfNotSet(self._url)
|
|
115
|
+
return self._url.value
|
|
116
|
+
|
|
117
|
+
def _useAttributes(self, attributes: dict[str, Any]) -> None:
|
|
118
|
+
if "author" in attributes: # pragma no branch
|
|
119
|
+
self._author = self._makeClassAttribute(github.NamedUser.NamedUser, attributes["author"])
|
|
120
|
+
if "body" in attributes: # pragma no branch
|
|
121
|
+
self._body = self._makeStringAttribute(attributes["body"])
|
|
122
|
+
if "body_html" in attributes: # pragma no branch
|
|
123
|
+
self._body_html = self._makeStringAttribute(attributes["body_html"])
|
|
124
|
+
if "created_at" in attributes: # pragma no branch
|
|
125
|
+
self._created_at = self._makeDatetimeAttribute(attributes["created_at"])
|
|
126
|
+
if "html_url" in attributes: # pragma no branch
|
|
127
|
+
self._html_url = self._makeStringAttribute(attributes["html_url"])
|
|
128
|
+
if "last_edited_at" in attributes: # pragma no branch
|
|
129
|
+
self._last_edited_at = self._makeDatetimeAttribute(attributes["last_edited_at"])
|
|
130
|
+
if "node_id" in attributes: # pragma no branch
|
|
131
|
+
self._node_id = self._makeStringAttribute(attributes["node_id"])
|
|
132
|
+
if "updated_at" in attributes: # pragma no branch
|
|
133
|
+
self._updated_at = self._makeDatetimeAttribute(attributes["updated_at"])
|
|
134
|
+
if "url" in attributes: # pragma no branch
|
|
135
|
+
self._url = self._makeStringAttribute(attributes["url"])
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
# Copyright 2023 chantra <chantra@users.noreply.github.com> #
|
|
10
10
|
# Copyright 2024 Enrico Minack <github@enrico.minack.dev> #
|
|
11
11
|
# Copyright 2024 Jirka Borovec <6035284+Borda@users.noreply.github.com> #
|
|
12
|
+
# Copyright 2024 Min RK <benjaminrk@gmail.com> #
|
|
12
13
|
# #
|
|
13
14
|
# This file is part of PyGithub. #
|
|
14
15
|
# http://pygithub.readthedocs.io/ #
|
|
@@ -182,6 +183,16 @@ class GithubIntegration:
|
|
|
182
183
|
auth = self.auth.get_installation_auth(installation_id, token_permissions, self.__requester)
|
|
183
184
|
return github.Github(**self.__requester.withAuth(auth).kwargs)
|
|
184
185
|
|
|
186
|
+
@property
|
|
187
|
+
def requester(self) -> Requester:
|
|
188
|
+
"""
|
|
189
|
+
Return my Requester object.
|
|
190
|
+
|
|
191
|
+
For example, to make requests to API endpoints not yet supported by PyGitHub.
|
|
192
|
+
|
|
193
|
+
"""
|
|
194
|
+
return self.__requester
|
|
195
|
+
|
|
185
196
|
def _get_headers(self) -> dict[str, str]:
|
|
186
197
|
"""
|
|
187
198
|
Get headers for the requests.
|
|
@@ -245,8 +256,10 @@ class GithubIntegration:
|
|
|
245
256
|
"""
|
|
246
257
|
Deprecated by get_repo_installation.
|
|
247
258
|
|
|
248
|
-
:calls
|
|
249
|
-
|
|
259
|
+
:calls:`GET /repos/{owner}/{repo}/installation <https://docs.github.com/en/rest/reference/apps#get-a-repository-
|
|
260
|
+
installation-for-the-authenticated-app>`
|
|
261
|
+
:calls:`GET /repos/{owner}/{repo}/installation <https://docs.github.com/en/rest/reference/apps#get-a-repository-
|
|
262
|
+
installation-for-the-authenticated-app>`
|
|
250
263
|
|
|
251
264
|
"""
|
|
252
265
|
owner = urllib.parse.quote(owner)
|