PyGithub 2.2.0__tar.gz → 2.4.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/.github/workflows/ci.yml +69 -0
- pygithub-2.4.0/.gitignore +62 -0
- pygithub-2.4.0/.pre-commit-config.yaml +47 -0
- pygithub-2.4.0/CONTRIBUTING.md +136 -0
- pygithub-2.4.0/PKG-INFO +103 -0
- pygithub-2.4.0/PyGithub.egg-info/PKG-INFO +103 -0
- pygithub-2.4.0/PyGithub.egg-info/SOURCES.txt +1226 -0
- pygithub-2.4.0/README.md +69 -0
- pygithub-2.4.0/doc/changes.rst +1703 -0
- pygithub-2.4.0/doc/examples/Authentication.rst +146 -0
- pygithub-2.4.0/github/AdvisoryBase.py +149 -0
- pygithub-2.4.0/github/AdvisoryCredit.py +114 -0
- pygithub-2.4.0/github/AdvisoryCreditDetailed.py +91 -0
- pygithub-2.4.0/github/AdvisoryVulnerability.py +175 -0
- pygithub-2.4.0/github/AdvisoryVulnerabilityPackage.py +82 -0
- pygithub-2.4.0/github/ApplicationOAuth.py +200 -0
- pygithub-2.4.0/github/Artifact.py +167 -0
- pygithub-2.4.0/github/Auth.py +532 -0
- pygithub-2.4.0/github/AuthenticatedUser.py +1154 -0
- pygithub-2.4.0/github/Authorization.py +191 -0
- pygithub-2.4.0/github/AuthorizationApplication.py +69 -0
- pygithub-2.4.0/github/Autolink.py +88 -0
- pygithub-2.4.0/github/Branch.py +590 -0
- pygithub-2.4.0/github/BranchProtection.py +174 -0
- pygithub-2.4.0/github/CVSS.py +79 -0
- pygithub-2.4.0/github/CWE.py +72 -0
- pygithub-2.4.0/github/CheckRun.py +268 -0
- pygithub-2.4.0/github/CheckRunAnnotation.py +110 -0
- pygithub-2.4.0/github/CheckRunOutput.py +90 -0
- pygithub-2.4.0/github/CheckSuite.py +285 -0
- pygithub-2.4.0/github/Clones.py +87 -0
- pygithub-2.4.0/github/CodeScanAlert.py +160 -0
- pygithub-2.4.0/github/CodeScanAlertInstance.py +114 -0
- pygithub-2.4.0/github/CodeScanAlertInstanceLocation.py +94 -0
- pygithub-2.4.0/github/CodeScanRule.py +97 -0
- pygithub-2.4.0/github/CodeScanTool.py +86 -0
- pygithub-2.4.0/github/Commit.py +313 -0
- pygithub-2.4.0/github/CommitCombinedStatus.py +113 -0
- pygithub-2.4.0/github/CommitComment.py +225 -0
- pygithub-2.4.0/github/Comparison.py +170 -0
- pygithub-2.4.0/github/Consts.py +181 -0
- pygithub-2.4.0/github/ContentFile.py +194 -0
- pygithub-2.4.0/github/DependabotAlert.py +162 -0
- pygithub-2.4.0/github/DependabotAlertAdvisory.py +69 -0
- pygithub-2.4.0/github/DependabotAlertDependency.py +68 -0
- pygithub-2.4.0/github/DependabotAlertVulnerability.py +75 -0
- pygithub-2.4.0/github/Deployment.py +270 -0
- pygithub-2.4.0/github/DeploymentStatus.py +171 -0
- pygithub-2.4.0/github/Download.py +249 -0
- pygithub-2.4.0/github/Enterprise.py +95 -0
- pygithub-2.4.0/github/EnterpriseConsumedLicenses.py +108 -0
- pygithub-2.4.0/github/Environment.py +298 -0
- pygithub-2.4.0/github/EnvironmentDeploymentBranchPolicy.py +79 -0
- pygithub-2.4.0/github/EnvironmentProtectionRule.py +107 -0
- pygithub-2.4.0/github/EnvironmentProtectionRuleReviewer.py +100 -0
- pygithub-2.4.0/github/Event.py +122 -0
- pygithub-2.4.0/github/File.py +133 -0
- pygithub-2.4.0/github/Gist.py +312 -0
- pygithub-2.4.0/github/GistComment.py +130 -0
- pygithub-2.4.0/github/GistFile.py +95 -0
- pygithub-2.4.0/github/GistHistoryState.py +226 -0
- pygithub-2.4.0/github/GitAuthor.py +75 -0
- pygithub-2.4.0/github/GitBlob.py +98 -0
- pygithub-2.4.0/github/GitCommit.py +132 -0
- pygithub-2.4.0/github/GitObject.py +74 -0
- pygithub-2.4.0/github/GitRef.py +107 -0
- pygithub-2.4.0/github/GitRelease.py +341 -0
- pygithub-2.4.0/github/GitReleaseAsset.py +178 -0
- pygithub-2.4.0/github/GitTag.py +117 -0
- pygithub-2.4.0/github/GitTree.py +93 -0
- pygithub-2.4.0/github/GitTreeElement.py +95 -0
- pygithub-2.4.0/github/GithubApp.py +164 -0
- pygithub-2.4.0/github/GithubException.py +191 -0
- pygithub-2.4.0/github/GithubIntegration.py +303 -0
- pygithub-2.4.0/github/GithubObject.py +452 -0
- pygithub-2.4.0/github/GithubRetry.py +231 -0
- pygithub-2.4.0/github/GitignoreTemplate.py +72 -0
- pygithub-2.4.0/github/GlobalAdvisory.py +122 -0
- pygithub-2.4.0/github/Hook.py +206 -0
- pygithub-2.4.0/github/HookDelivery.py +213 -0
- pygithub-2.4.0/github/HookDescription.py +84 -0
- pygithub-2.4.0/github/HookResponse.py +74 -0
- pygithub-2.4.0/github/InputFileContent.py +62 -0
- pygithub-2.4.0/github/InputGitAuthor.py +70 -0
- pygithub-2.4.0/github/InputGitTreeElement.py +78 -0
- pygithub-2.4.0/github/Installation.py +146 -0
- pygithub-2.4.0/github/InstallationAuthorization.py +99 -0
- pygithub-2.4.0/github/Invitation.py +135 -0
- pygithub-2.4.0/github/Issue.py +583 -0
- pygithub-2.4.0/github/IssueComment.py +248 -0
- pygithub-2.4.0/github/IssueEvent.py +217 -0
- pygithub-2.4.0/github/IssuePullRequest.py +71 -0
- pygithub-2.4.0/github/Label.py +122 -0
- pygithub-2.4.0/github/License.py +153 -0
- pygithub-2.4.0/github/MainClass.py +1015 -0
- pygithub-2.4.0/github/Membership.py +119 -0
- pygithub-2.4.0/github/Migration.py +196 -0
- pygithub-2.4.0/github/Milestone.py +213 -0
- pygithub-2.4.0/github/NamedEnterpriseUser.py +203 -0
- pygithub-2.4.0/github/NamedUser.py +634 -0
- pygithub-2.4.0/github/Notification.py +171 -0
- pygithub-2.4.0/github/NotificationSubject.py +89 -0
- pygithub-2.4.0/github/Organization.py +1535 -0
- pygithub-2.4.0/github/OrganizationCustomProperty.py +169 -0
- pygithub-2.4.0/github/OrganizationDependabotAlert.py +54 -0
- pygithub-2.4.0/github/OrganizationSecret.py +137 -0
- pygithub-2.4.0/github/OrganizationVariable.py +133 -0
- pygithub-2.4.0/github/Path.py +94 -0
- pygithub-2.4.0/github/Permissions.py +97 -0
- pygithub-2.4.0/github/Plan.py +96 -0
- pygithub-2.4.0/github/Project.py +245 -0
- pygithub-2.4.0/github/ProjectCard.py +218 -0
- pygithub-2.4.0/github/ProjectColumn.py +217 -0
- pygithub-2.4.0/github/PublicKey.py +100 -0
- pygithub-2.4.0/github/PullRequest.py +1013 -0
- pygithub-2.4.0/github/PullRequestComment.py +271 -0
- pygithub-2.4.0/github/PullRequestMergeStatus.py +81 -0
- pygithub-2.4.0/github/PullRequestPart.py +97 -0
- pygithub-2.4.0/github/PullRequestReview.py +159 -0
- pygithub-2.4.0/github/Rate.py +95 -0
- pygithub-2.4.0/github/RateLimit.py +95 -0
- pygithub-2.4.0/github/Reaction.py +113 -0
- pygithub-2.4.0/github/Referrer.py +86 -0
- pygithub-2.4.0/github/Repository.py +4439 -0
- pygithub-2.4.0/github/RepositoryAdvisory.py +371 -0
- pygithub-2.4.0/github/RepositoryKey.py +146 -0
- pygithub-2.4.0/github/RepositoryPreferences.py +76 -0
- pygithub-2.4.0/github/Requester.py +1023 -0
- pygithub-2.4.0/github/RequiredPullRequestReviews.py +141 -0
- pygithub-2.4.0/github/RequiredStatusChecks.py +86 -0
- pygithub-2.4.0/github/Secret.py +123 -0
- pygithub-2.4.0/github/SecurityAndAnalysis.py +121 -0
- pygithub-2.4.0/github/SecurityAndAnalysisFeature.py +61 -0
- pygithub-2.4.0/github/SelfHostedActionsRunner.py +101 -0
- pygithub-2.4.0/github/SourceImport.py +171 -0
- pygithub-2.4.0/github/Stargazer.py +86 -0
- pygithub-2.4.0/github/StatsCodeFrequency.py +75 -0
- pygithub-2.4.0/github/StatsCommitActivity.py +78 -0
- pygithub-2.4.0/github/StatsContributor.py +116 -0
- pygithub-2.4.0/github/StatsParticipation.py +72 -0
- pygithub-2.4.0/github/StatsPunchCard.py +68 -0
- pygithub-2.4.0/github/Tag.py +95 -0
- pygithub-2.4.0/github/Team.py +472 -0
- pygithub-2.4.0/github/TeamDiscussion.py +205 -0
- pygithub-2.4.0/github/TimelineEvent.py +153 -0
- pygithub-2.4.0/github/TimelineEventSource.py +79 -0
- pygithub-2.4.0/github/UserKey.py +108 -0
- pygithub-2.4.0/github/Variable.py +142 -0
- pygithub-2.4.0/github/View.py +87 -0
- pygithub-2.4.0/github/Workflow.py +220 -0
- pygithub-2.4.0/github/WorkflowJob.py +241 -0
- pygithub-2.4.0/github/WorkflowRun.py +364 -0
- pygithub-2.4.0/github/WorkflowStep.py +109 -0
- pygithub-2.4.0/github/__init__.py +111 -0
- pygithub-2.4.0/pyproject.toml +106 -0
- pygithub-2.4.0/scripts/add_attribute.py +222 -0
- pygithub-2.4.0/scripts/fix_headers.py +183 -0
- pygithub-2.4.0/tests/ApplicationOAuth.py +233 -0
- pygithub-2.4.0/tests/AuthenticatedUser.py +785 -0
- pygithub-2.4.0/tests/Authentication.py +363 -0
- pygithub-2.4.0/tests/BadAttributes.py +306 -0
- pygithub-2.4.0/tests/Branch.py +299 -0
- pygithub-2.4.0/tests/BranchProtection.py +61 -0
- pygithub-2.4.0/tests/Commit.py +143 -0
- pygithub-2.4.0/tests/DependabotAlert.py +186 -0
- pygithub-2.4.0/tests/GlobalAdvisory.py +224 -0
- pygithub-2.4.0/tests/Issue.py +340 -0
- pygithub-2.4.0/tests/IssueComment.py +119 -0
- pygithub-2.4.0/tests/Logging_.py +233 -0
- pygithub-2.4.0/tests/Notification.py +47 -0
- pygithub-2.4.0/tests/Organization.py +706 -0
- pygithub-2.4.0/tests/PullRequest.py +580 -0
- pygithub-2.4.0/tests/PullRequestReview.py +102 -0
- pygithub-2.4.0/tests/ReplayData/ApplicationOAuth.testEnterpriseGetAccessToken.txt +10 -0
- pygithub-2.4.0/tests/ReplayData/AuthenticatedUser.testCreateRepositoryWithAllArguments.txt +10 -0
- pygithub-2.4.0/tests/ReplayData/BadAttributes.testBadTransformedAttributeInList.txt +10 -0
- pygithub-2.4.0/tests/ReplayData/Commit.testAttributes.txt +10 -0
- pygithub-2.4.0/tests/ReplayData/IssueComment.setUp.txt +43 -0
- pygithub-2.4.0/tests/ReplayData/IssueComment.testMinimize.txt +10 -0
- pygithub-2.4.0/tests/ReplayData/IssueComment.testUnminimize.txt +10 -0
- pygithub-2.4.0/tests/ReplayData/Notification.testMarkAsDone.txt +9 -0
- pygithub-2.4.0/tests/ReplayData/Organization.testCreateActionsSecret.txt +32 -0
- pygithub-2.4.0/tests/ReplayData/Organization.testCreateCustomProperties.txt +10 -0
- pygithub-2.4.0/tests/ReplayData/Organization.testCreateCustomProperty.txt +10 -0
- pygithub-2.4.0/tests/ReplayData/Organization.testCreateCustomPropertyValues.txt +9 -0
- pygithub-2.4.0/tests/ReplayData/Organization.testCreateDependabotSecret.txt +32 -0
- pygithub-2.4.0/tests/ReplayData/Organization.testCreateDependabotSecretSelected.txt +65 -0
- pygithub-2.4.0/tests/ReplayData/Organization.testGetCustomProperties.txt +10 -0
- pygithub-2.4.0/tests/ReplayData/Organization.testGetCustomProperty.txt +10 -0
- pygithub-2.4.0/tests/ReplayData/Organization.testListCustomPropertyValues.txt +10 -0
- pygithub-2.4.0/tests/ReplayData/Organization.testOrgGetSecretAssertion.txt +10 -0
- pygithub-2.4.0/tests/ReplayData/Organization.testOrgSecretEdit.txt +53 -0
- pygithub-2.4.0/tests/ReplayData/Organization.testRemoveCustomProperty.txt +21 -0
- pygithub-2.4.0/tests/ReplayData/PullRequest.setUp.txt +109 -0
- pygithub-2.4.0/tests/ReplayData/PullRequest.testDeleteBranch.txt +54 -0
- pygithub-2.4.0/tests/ReplayData/PullRequest.testDeleteOnMerge.txt +87 -0
- pygithub-2.4.0/tests/ReplayData/PullRequest.testForceDeleteBranch.txt +43 -0
- pygithub-2.4.0/tests/ReplayData/PullRequest.testRestoreBranch.txt +32 -0
- pygithub-2.4.0/tests/ReplayData/Repository.setUp.txt +21 -0
- pygithub-2.4.0/tests/ReplayData/Repository.testAddToCollaboratorsCustomRole.txt +20 -0
- pygithub-2.4.0/tests/ReplayData/Repository.testCreateGitReleaseGenerateReleaseNotes.txt +10 -0
- pygithub-2.4.0/tests/ReplayData/Repository.testCreateRepoActionsSecret.txt +32 -0
- pygithub-2.4.0/tests/ReplayData/Repository.testCreateRepoDependabotSecret.txt +32 -0
- pygithub-2.4.0/tests/ReplayData/Repository.testEditWithAllArguments.txt +21 -0
- pygithub-2.4.0/tests/ReplayData/Repository.testGetCustomProperties.txt +10 -0
- pygithub-2.4.0/tests/ReplayData/Repository.testGetWorkflowRunsCreated.txt +21 -0
- pygithub-2.4.0/tests/ReplayData/Repository.testRepoGetSecretAssertion.txt +10 -0
- pygithub-2.4.0/tests/ReplayData/Repository.testUpdateCustomProperties.txt +9 -0
- pygithub-2.4.0/tests/ReplayData/RepositoryKey.setUp.txt +43 -0
- pygithub-2.4.0/tests/ReplayData/SecurityAndAnalysis.setUp.txt +10 -0
- pygithub-2.4.0/tests/ReplayData/Workflow.testGetRunsWithCreated.txt +10 -0
- pygithub-2.4.0/tests/ReplayData/WorkflowRun.test_rerun_failed_jobs.txt +21 -0
- pygithub-2.4.0/tests/Repository.py +2083 -0
- pygithub-2.4.0/tests/RepositoryKey.py +83 -0
- pygithub-2.4.0/tests/RequiredPullRequestReviews.py +81 -0
- pygithub-2.4.0/tests/SecurityAndAnalysis.py +64 -0
- pygithub-2.4.0/tests/Team.py +183 -0
- pygithub-2.4.0/tests/Workflow.py +132 -0
- pygithub-2.4.0/tests/WorkflowJob.py +93 -0
- pygithub-2.4.0/tests/WorkflowRun.py +152 -0
- pygithub-2.4.0/tox.ini +37 -0
- PyGithub-2.2.0/.github/workflows/ci.yml +0 -63
- PyGithub-2.2.0/.gitignore +0 -56
- PyGithub-2.2.0/.pre-commit-config.yaml +0 -40
- PyGithub-2.2.0/CONTRIBUTING.md +0 -125
- PyGithub-2.2.0/PKG-INFO +0 -103
- PyGithub-2.2.0/PyGithub.egg-info/PKG-INFO +0 -103
- PyGithub-2.2.0/PyGithub.egg-info/SOURCES.txt +0 -1192
- PyGithub-2.2.0/README.md +0 -69
- PyGithub-2.2.0/doc/changes.rst +0 -1612
- PyGithub-2.2.0/doc/examples/Authentication.rst +0 -138
- PyGithub-2.2.0/github/AdvisoryBase.py +0 -148
- PyGithub-2.2.0/github/AdvisoryCredit.py +0 -109
- PyGithub-2.2.0/github/AdvisoryCreditDetailed.py +0 -86
- PyGithub-2.2.0/github/AdvisoryVulnerability.py +0 -170
- PyGithub-2.2.0/github/AdvisoryVulnerabilityPackage.py +0 -77
- PyGithub-2.2.0/github/ApplicationOAuth.py +0 -183
- PyGithub-2.2.0/github/Artifact.py +0 -165
- PyGithub-2.2.0/github/Auth.py +0 -485
- PyGithub-2.2.0/github/AuthenticatedUser.py +0 -1149
- PyGithub-2.2.0/github/Authorization.py +0 -185
- PyGithub-2.2.0/github/AuthorizationApplication.py +0 -67
- PyGithub-2.2.0/github/Autolink.py +0 -83
- PyGithub-2.2.0/github/Branch.py +0 -584
- PyGithub-2.2.0/github/BranchProtection.py +0 -168
- PyGithub-2.2.0/github/CVSS.py +0 -74
- PyGithub-2.2.0/github/CWE.py +0 -67
- PyGithub-2.2.0/github/CheckRun.py +0 -263
- PyGithub-2.2.0/github/CheckRunAnnotation.py +0 -106
- PyGithub-2.2.0/github/CheckRunOutput.py +0 -86
- PyGithub-2.2.0/github/CheckSuite.py +0 -279
- PyGithub-2.2.0/github/Clones.py +0 -82
- PyGithub-2.2.0/github/CodeScanAlert.py +0 -152
- PyGithub-2.2.0/github/CodeScanAlertInstance.py +0 -109
- PyGithub-2.2.0/github/CodeScanAlertInstanceLocation.py +0 -89
- PyGithub-2.2.0/github/CodeScanRule.py +0 -92
- PyGithub-2.2.0/github/CodeScanTool.py +0 -81
- PyGithub-2.2.0/github/Commit.py +0 -298
- PyGithub-2.2.0/github/CommitCombinedStatus.py +0 -107
- PyGithub-2.2.0/github/CommitComment.py +0 -219
- PyGithub-2.2.0/github/Comparison.py +0 -169
- PyGithub-2.2.0/github/Consts.py +0 -179
- PyGithub-2.2.0/github/ContentFile.py +0 -188
- PyGithub-2.2.0/github/DependabotAlert.py +0 -157
- PyGithub-2.2.0/github/DependabotAlertAdvisory.py +0 -64
- PyGithub-2.2.0/github/DependabotAlertDependency.py +0 -63
- PyGithub-2.2.0/github/DependabotAlertVulnerability.py +0 -74
- PyGithub-2.2.0/github/Deployment.py +0 -264
- PyGithub-2.2.0/github/DeploymentStatus.py +0 -165
- PyGithub-2.2.0/github/Download.py +0 -243
- PyGithub-2.2.0/github/Enterprise.py +0 -89
- PyGithub-2.2.0/github/EnterpriseConsumedLicenses.py +0 -103
- PyGithub-2.2.0/github/Environment.py +0 -293
- PyGithub-2.2.0/github/EnvironmentDeploymentBranchPolicy.py +0 -73
- PyGithub-2.2.0/github/EnvironmentProtectionRule.py +0 -101
- PyGithub-2.2.0/github/EnvironmentProtectionRuleReviewer.py +0 -94
- PyGithub-2.2.0/github/Event.py +0 -116
- PyGithub-2.2.0/github/File.py +0 -131
- PyGithub-2.2.0/github/Gist.py +0 -306
- PyGithub-2.2.0/github/GistComment.py +0 -124
- PyGithub-2.2.0/github/GistFile.py +0 -93
- PyGithub-2.2.0/github/GistHistoryState.py +0 -224
- PyGithub-2.2.0/github/GitAuthor.py +0 -73
- PyGithub-2.2.0/github/GitBlob.py +0 -92
- PyGithub-2.2.0/github/GitCommit.py +0 -126
- PyGithub-2.2.0/github/GitObject.py +0 -72
- PyGithub-2.2.0/github/GitRef.py +0 -101
- PyGithub-2.2.0/github/GitRelease.py +0 -323
- PyGithub-2.2.0/github/GitReleaseAsset.py +0 -172
- PyGithub-2.2.0/github/GitTag.py +0 -111
- PyGithub-2.2.0/github/GitTree.py +0 -87
- PyGithub-2.2.0/github/GitTreeElement.py +0 -93
- PyGithub-2.2.0/github/GithubApp.py +0 -158
- PyGithub-2.2.0/github/GithubException.py +0 -185
- PyGithub-2.2.0/github/GithubIntegration.py +0 -299
- PyGithub-2.2.0/github/GithubObject.py +0 -446
- PyGithub-2.2.0/github/GithubRetry.py +0 -227
- PyGithub-2.2.0/github/GitignoreTemplate.py +0 -66
- PyGithub-2.2.0/github/GlobalAdvisory.py +0 -118
- PyGithub-2.2.0/github/Hook.py +0 -200
- PyGithub-2.2.0/github/HookDelivery.py +0 -211
- PyGithub-2.2.0/github/HookDescription.py +0 -82
- PyGithub-2.2.0/github/HookResponse.py +0 -72
- PyGithub-2.2.0/github/InputFileContent.py +0 -60
- PyGithub-2.2.0/github/InputGitAuthor.py +0 -68
- PyGithub-2.2.0/github/InputGitTreeElement.py +0 -76
- PyGithub-2.2.0/github/Installation.py +0 -140
- PyGithub-2.2.0/github/InstallationAuthorization.py +0 -97
- PyGithub-2.2.0/github/Invitation.py +0 -129
- PyGithub-2.2.0/github/Issue.py +0 -577
- PyGithub-2.2.0/github/IssueComment.py +0 -201
- PyGithub-2.2.0/github/IssueEvent.py +0 -211
- PyGithub-2.2.0/github/IssuePullRequest.py +0 -69
- PyGithub-2.2.0/github/Label.py +0 -116
- PyGithub-2.2.0/github/License.py +0 -147
- PyGithub-2.2.0/github/MainClass.py +0 -984
- PyGithub-2.2.0/github/Membership.py +0 -113
- PyGithub-2.2.0/github/Migration.py +0 -190
- PyGithub-2.2.0/github/Milestone.py +0 -207
- PyGithub-2.2.0/github/NamedEnterpriseUser.py +0 -197
- PyGithub-2.2.0/github/NamedUser.py +0 -628
- PyGithub-2.2.0/github/Notification.py +0 -155
- PyGithub-2.2.0/github/NotificationSubject.py +0 -83
- PyGithub-2.2.0/github/Organization.py +0 -1379
- PyGithub-2.2.0/github/OrganizationDependabotAlert.py +0 -48
- PyGithub-2.2.0/github/OrganizationSecret.py +0 -127
- PyGithub-2.2.0/github/OrganizationVariable.py +0 -127
- PyGithub-2.2.0/github/Path.py +0 -89
- PyGithub-2.2.0/github/Permissions.py +0 -95
- PyGithub-2.2.0/github/Plan.py +0 -94
- PyGithub-2.2.0/github/Project.py +0 -239
- PyGithub-2.2.0/github/ProjectCard.py +0 -212
- PyGithub-2.2.0/github/ProjectColumn.py +0 -211
- PyGithub-2.2.0/github/PublicKey.py +0 -92
- PyGithub-2.2.0/github/PullRequest.py +0 -982
- PyGithub-2.2.0/github/PullRequestComment.py +0 -256
- PyGithub-2.2.0/github/PullRequestMergeStatus.py +0 -75
- PyGithub-2.2.0/github/PullRequestPart.py +0 -95
- PyGithub-2.2.0/github/PullRequestReview.py +0 -153
- PyGithub-2.2.0/github/Rate.py +0 -89
- PyGithub-2.2.0/github/RateLimit.py +0 -95
- PyGithub-2.2.0/github/Reaction.py +0 -107
- PyGithub-2.2.0/github/Referrer.py +0 -81
- PyGithub-2.2.0/github/Repository.py +0 -4313
- PyGithub-2.2.0/github/RepositoryAdvisory.py +0 -354
- PyGithub-2.2.0/github/RepositoryKey.py +0 -122
- PyGithub-2.2.0/github/RepositoryPreferences.py +0 -71
- PyGithub-2.2.0/github/Requester.py +0 -1019
- PyGithub-2.2.0/github/RequiredPullRequestReviews.py +0 -135
- PyGithub-2.2.0/github/RequiredStatusChecks.py +0 -80
- PyGithub-2.2.0/github/Secret.py +0 -117
- PyGithub-2.2.0/github/SelfHostedActionsRunner.py +0 -96
- PyGithub-2.2.0/github/SourceImport.py +0 -165
- PyGithub-2.2.0/github/Stargazer.py +0 -80
- PyGithub-2.2.0/github/StatsCodeFrequency.py +0 -70
- PyGithub-2.2.0/github/StatsCommitActivity.py +0 -72
- PyGithub-2.2.0/github/StatsContributor.py +0 -110
- PyGithub-2.2.0/github/StatsParticipation.py +0 -66
- PyGithub-2.2.0/github/StatsPunchCard.py +0 -60
- PyGithub-2.2.0/github/Tag.py +0 -89
- PyGithub-2.2.0/github/Team.py +0 -466
- PyGithub-2.2.0/github/TeamDiscussion.py +0 -199
- PyGithub-2.2.0/github/TimelineEvent.py +0 -147
- PyGithub-2.2.0/github/TimelineEventSource.py +0 -73
- PyGithub-2.2.0/github/UserKey.py +0 -102
- PyGithub-2.2.0/github/Variable.py +0 -136
- PyGithub-2.2.0/github/View.py +0 -82
- PyGithub-2.2.0/github/Workflow.py +0 -214
- PyGithub-2.2.0/github/WorkflowJob.py +0 -162
- PyGithub-2.2.0/github/WorkflowRun.py +0 -350
- PyGithub-2.2.0/github/WorkflowStep.py +0 -103
- PyGithub-2.2.0/github/__init__.py +0 -109
- PyGithub-2.2.0/pyproject.toml +0 -94
- PyGithub-2.2.0/scripts/add_attribute.py +0 -215
- PyGithub-2.2.0/scripts/fix_headers.py +0 -183
- PyGithub-2.2.0/tests/ApplicationOAuth.py +0 -191
- PyGithub-2.2.0/tests/AuthenticatedUser.py +0 -782
- PyGithub-2.2.0/tests/Authentication.py +0 -331
- PyGithub-2.2.0/tests/BadAttributes.py +0 -305
- PyGithub-2.2.0/tests/Branch.py +0 -298
- PyGithub-2.2.0/tests/BranchProtection.py +0 -60
- PyGithub-2.2.0/tests/Commit.py +0 -141
- PyGithub-2.2.0/tests/DependabotAlert.py +0 -185
- PyGithub-2.2.0/tests/GlobalAdvisory.py +0 -220
- PyGithub-2.2.0/tests/Issue.py +0 -339
- PyGithub-2.2.0/tests/IssueComment.py +0 -110
- PyGithub-2.2.0/tests/Logging_.py +0 -217
- PyGithub-2.2.0/tests/Notification.py +0 -43
- PyGithub-2.2.0/tests/Organization.py +0 -571
- PyGithub-2.2.0/tests/PullRequest.py +0 -516
- PyGithub-2.2.0/tests/PullRequestReview.py +0 -101
- PyGithub-2.2.0/tests/ReplayData/AuthenticatedUser.testCreateRepositoryWithAllArguments.txt +0 -10
- PyGithub-2.2.0/tests/ReplayData/BadAttributes.testBadTransformedAttributeInList.txt +0 -10
- PyGithub-2.2.0/tests/ReplayData/IssueComment.setUp.txt +0 -43
- PyGithub-2.2.0/tests/ReplayData/Organization.testCreateSecret.txt +0 -21
- PyGithub-2.2.0/tests/ReplayData/PullRequest.setUp.txt +0 -87
- PyGithub-2.2.0/tests/ReplayData/Repository.setUp.txt +0 -21
- PyGithub-2.2.0/tests/ReplayData/Repository.testCreateSecret.txt +0 -21
- PyGithub-2.2.0/tests/ReplayData/Repository.testEditWithAllArguments.txt +0 -21
- PyGithub-2.2.0/tests/ReplayData/RepositoryKey.setUp.txt +0 -32
- PyGithub-2.2.0/tests/Repository.py +0 -2032
- PyGithub-2.2.0/tests/RepositoryKey.py +0 -67
- PyGithub-2.2.0/tests/RequiredPullRequestReviews.py +0 -80
- PyGithub-2.2.0/tests/Team.py +0 -182
- PyGithub-2.2.0/tests/Workflow.py +0 -123
- PyGithub-2.2.0/tests/WorkflowJob.py +0 -81
- PyGithub-2.2.0/tests/WorkflowRun.py +0 -147
- PyGithub-2.2.0/tox.ini +0 -37
- {PyGithub-2.2.0 → pygithub-2.4.0}/.git-blame-ignore-revs +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/.github/FUNDING.yml +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/.github/dependabot.yml +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/.github/release-drafter.yml +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/.github/stale.yml +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/.github/workflows/_build-pkg.yml +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/.github/workflows/lint.yml +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/.github/workflows/pypi-release.yml +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/.readthedocs.yml +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/COPYING +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/COPYING.LESSER +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/DEPLOY.md +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/MAINTAINERS +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/PyGithub.egg-info/dependency_links.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/PyGithub.egg-info/requires.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/PyGithub.egg-info/top_level.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/codecov.yml +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/doc/.gitignore +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/doc/Design.md +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/doc/conf.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/doc/examples/Branch.rst +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/doc/examples/Commit.rst +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/doc/examples/Issue.rst +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/doc/examples/MainClass.rst +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/doc/examples/Milestone.rst +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/doc/examples/PullRequest.rst +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/doc/examples/Repository.rst +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/doc/examples/Webhook.rst +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/doc/examples.rst +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/doc/github.rst +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/doc/github_integration.rst +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/doc/github_objects/.gitignore +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/doc/index.rst +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/doc/introduction.rst +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/doc/reference.rst +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/doc/utilities.rst +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/github/AccessToken.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/github/AppAuthentication.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/github/CommitStats.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/github/CommitStatus.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/github/PaginatedList.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/github/Topic.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/github/py.typed +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/requirements/docs.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/requirements/test.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/requirements/types.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/scripts/prepare_release.sh +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/setup.cfg +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Artifact.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Authorization.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Autolink.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/CheckRun.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/CheckSuite.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/CommitCombinedStatus.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/CommitComment.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/CommitStatus.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ConditionalRequestUpdate.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Connection.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ContentFile.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Deployment.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/DeploymentStatus.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Download.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Enterprise.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/EnterpriseAdmin.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Environment.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Equality.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Event.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Exceptions.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ExposeAllAttributes.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Framework.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Gist.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/GistComment.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/GitBlob.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/GitCommit.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/GitMembership.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/GitRef.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/GitRelease.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/GitTag.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/GitTree.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/GithubApp.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/GithubIntegration.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/GithubObject.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/GithubRetry.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Github_.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/GraphQl.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Hook.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Installation.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue131.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue133.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue134.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue139.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue140.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue142.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue174.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue2030.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue214.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue216.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue278.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue33.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue494.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue50.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue54.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue572.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue80.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue823.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue87.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue937.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Issue945.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/IssueEvent.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Label.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/License.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Markdown.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Migration.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Milestone.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/NamedUser.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/NamedUser1430.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Organization1437.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Organization2072.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/OrganizationHasInMembers.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/PaginatedList.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Permissions.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Persistence.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Pickle.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/PoolSize.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Project.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Project1434.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ProjectColumn.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/PublicKey.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/PullRequest1168.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/PullRequest1169.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/PullRequest1375.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/PullRequest1682.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/PullRequest1684.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/PullRequest2408.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/PullRequestComment.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/PullRequestFile.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/PullRequestReview1856.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/RateLimiting.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/RawData.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Reaction.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReleaseAsset.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ApplicationOAuth.testGetAccessToken.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ApplicationOAuth.testGetAccessTokenBadCode.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ApplicationOAuth.testGetAccessTokenUnknownError.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ApplicationOAuth.testGetAccessTokenWithExpiry.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ApplicationOAuth.testRefreshAccessToken.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ApplicationOAuth.testRefreshAccessTokenBadCode.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ApplicationOAuth.testRefreshAccessTokenUnknownError.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Artifact.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Artifact.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Artifact.testGetArtifactsFromRepo.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Artifact.testGetArtifactsFromRepoWithName.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Artifact.testGetArtifactsFromWorkflow.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Artifact.testGetArtifactsFromWorkflowWithName.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Artifact.testGetNonexistentArtifact.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Artifact.testGetSingleArtifactFromRepo.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testAcceptInvitation.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testAttributes.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testCreateAuthorizationWithAllArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testCreateAuthorizationWithClientIdAndSecret.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testCreateAuthorizationWithoutArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testCreateFork.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testCreateGist.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testCreateGistWithoutDescription.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testCreateKey.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testCreateMigration.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testCreateProject.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testCreateRepoFromTemplate.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testCreateRepoFromTemplateWithAllArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testCreateRepository.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testCreateRepositoryWithAutoInit.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testEditWithAllArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testEditWithoutArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testEmails.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testFollowing.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testGetAuthorizations.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testGetEvents.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testGetGists.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testGetInvitations.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testGetIssues.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testGetIssuesWithAllArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testGetKeys.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testGetMigrations.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testGetNotification.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testGetNotifications.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testGetNotificationsWithOtherArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testGetOrganizationEvents.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testGetOrgs.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testGetRepos.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testGetReposWithArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testGetStarredGists.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testGetTeams.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testGetUserIssues.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testGetUserIssuesWithAllArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testInstallations.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testMarkNotificationsAsRead.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testStarring.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testSubscriptions.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/AuthenticatedUser.testWatching.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Authentication.testAppAuthAuthentication.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Authentication.testAppAuthTokenAuthentication.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Authentication.testAppAuthentication.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Authentication.testAppInstallationAuthAuthentication.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Authentication.testAppUserAuthentication.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Authentication.testAuthorizationHeaderWithLogin.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Authentication.testAuthorizationHeaderWithToken.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Authentication.testBasicAuthentication.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Authentication.testJWTAuthentication.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Authentication.testLoginAuthentication.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Authentication.testNoAuthentication.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Authentication.testOAuthAuthentication.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Authentication.testTokenAuthentication.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Authentication.testUserAgent.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Authorization.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Authorization.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Authorization.testEdit.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Autolink.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/BadAttributes.testBadAttributeInClassAttribute.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/BadAttributes.testBadAttributeTransformation.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/BadAttributes.testBadSimpleAttribute.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/BadAttributes.testBadSimpleAttributeInList.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/BadAttributes.testBadTransformedAttribute.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/BadAttributes.testBadTransformedAttributeInDict.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/BadAttributes.testIssue195.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testAddRequiredSignatures.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testAddTeamPushRestrictions.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testAddUserPushRestrictions.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testAdminEnforcement.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testAllowDeletions.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testCommitCommentsOnLine.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testEditProtection.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testEditProtectionDismissalUsersWithUserOwnedBranch.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testEditProtectionPushRestrictionsAndDismissalUser.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testEditProtectionPushRestrictionsWithUserOwnedBranch.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testEditRequiredPullRequestReviews.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testEditRequiredPullRequestReviewsWithTooLargeApprovingReviewCount.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testEditRequiredPullRequestReviewsWithUserBranchAndDismissalUsers.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testEditRequiredStatusChecks.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testGetRequiredSignatures.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testProtectedAttributes.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testRemoveProtection.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testRemovePushRestrictions.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testRemoveRequiredPullRequestReviews.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testRemoveRequiredSignatures.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testRemoveRequiredStatusChecks.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testRemoveTeamPushRestrictions.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testRemoveUserPushRestrictions.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testReplaceTeamPushRestrictions.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Branch.testReplaceUserPushRestrictions.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/BranchProtection.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckRun.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckRun.testCheckRunAnnotationAttributes.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckRun.testCheckRunOutputAttributes.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckRun.testCreateCheckRunCompleted.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckRun.testCreateCheckRunInProgress.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckRun.testGetCheckRunsForRef.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckRun.testGetCheckRunsForRefFilterByCheckName.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckRun.testGetCheckRunsForRefFilterByFilter.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckRun.testGetCheckRunsForRefFilterByStatus.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckRun.testListCheckRunAnnotations.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckRun.testUpdateCheckRunAll.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckRun.testUpdateCheckRunFailure.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckRun.testUpdateCheckRunSuccess.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckSuite.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckSuite.testCheckSuiteRerequest.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckSuite.testCreateCheckSuite.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckSuite.testGetCheckRuns.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckSuite.testGetCheckRunsFilterByCheckName.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckSuite.testGetCheckRunsFilterByFilter.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckSuite.testGetCheckRunsFilterByStatus.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckSuite.testGetCheckSuitesForRef.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckSuite.testGetCheckSuitesForRefFilterByAppId.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckSuite.testGetCheckSuitesForRefFilterByCheckName.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CheckSuite.testUpdateCheckSuitesPreferences.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Commit.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Commit.testCreateComment.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Commit.testCreateCommentOnFileLine.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Commit.testCreateCommentOnFilePosition.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Commit.testCreateStatusWithAllParameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Commit.testCreateStatusWithoutOptionalParameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Commit.testGetComments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Commit.testGetPulls.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CommitCombinedStatus.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CommitComment.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CommitComment.testCreateReaction.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CommitComment.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CommitComment.testDeleteReaction.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CommitComment.testEdit.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CommitComment.testGetReactions.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/CommitStatus.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ConditionalRequestUpdate.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ConditionalRequestUpdate.testDidNotUpdate.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ConditionalRequestUpdate.testDidUpdate.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ConditionalRequestUpdate.testUpdateObjectWithoutEtag.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ContentFile.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/DependabotAlert.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/DependabotAlert.testAttributes.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/DependabotAlert.testGetAlertsWithAllArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/DependabotAlert.testMultipleAlerts.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/DependabotAlert.testRepr.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/DependabotAlert.testUpdateAlertDismissed.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/DependabotAlert.testUpdateAlertOpen.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Deployment.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/DeploymentStatus.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/DeploymentStatus.testCreate.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/DeploymentStatus.testGetStatuses.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Download.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Download.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Enterprise.testHttp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Enterprise.testHttps.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Enterprise.testLongUrl.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Enterprise.testSpecificPort.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/EnterpriseAdmin.testGetConsumedLicenses.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/EnterpriseAdmin.testGetEnterpriseUsers.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Environment.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Environment.testCreateEnvironment.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Environment.testDeleteEnvironment.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Environment.testEnvironmentSecret.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Environment.testEnvironmentSecrets.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Environment.testEnvironmentVariable.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Environment.testEnvironmentVariables.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Environment.testGetEnvironments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Environment.testReviewers.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Environment.testUpdateEnvironment.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Equality.testBranchEquality.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Equality.testUserDifference.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Equality.testUserEquality.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Event.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Exceptions.testBadAuthentication.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Exceptions.testInvalidInput.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Exceptions.testJSONParseError.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Exceptions.testNonJsonDataReturnedByGithub.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Exceptions.testUnknownObject.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Exceptions.testUnknownUser.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ExposeAllAttributes.testAllClasses.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Gist.testAttributes.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Gist.testCreateComment.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Gist.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Gist.testDeleteFile.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Gist.testEditWithAllParameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Gist.testEditWithoutParameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Gist.testFork.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Gist.testGetComments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Gist.testRenameFile.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Gist.testStarring.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GistComment.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GistComment.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GistComment.testEdit.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GitBlob.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GitCommit.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GitMembership.testGetMembership.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GitRef.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GitRef.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GitRef.testEdit.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GitRef.testEditWithForce.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GitRelease.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GitRelease.testCreateGitTagAndRelease.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GitRelease.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GitRelease.testGetAssets.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GitRelease.testGetLatestRelease.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GitRelease.testGetRelease.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GitRelease.testUpdate.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GitRelease.testUploadAsset.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GitRelease.testUploadAssetFileLike.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GitRelease.testUploadAssetFromMemory.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GitRelease.testUploadAssetWithName.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GitTag.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GitTree.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetEmojis.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetEvents.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetGists.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetGistsWithSince.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetGitignoreTemplate.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetGitignoreTemplates.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetGlobalAdvisories.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetGlobalAdvisoriesByCVE.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetGlobalAdvisoriesByGHSA.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetGlobalAdvisoriesManyFilters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetHook.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetHookDeliveries.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetHookDelivery.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetHooks.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetLicense.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetLicenses.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetOrganizations.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetOrganizationsSince.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetRepoFromFullName.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetRepoFromId.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetRepos.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetReposSince.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetUserById.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetUsers.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testGetUsersSince.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testSearchRepos.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testSearchUserByEmail.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Github.testSearchUsers.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GithubApp.testGetAuthenticatedApp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GithubApp.testGetPublicApp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GithubIntegration.testAppAuth.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GithubIntegration.testDeprecatedAppAuth.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GithubIntegration.testGetAccessToken.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GithubIntegration.testGetAccessTokenForNoInstallation.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GithubIntegration.testGetAccessTokenWithExpiredJWT.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GithubIntegration.testGetAccessTokenWithInvalidData.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GithubIntegration.testGetAccessTokenWithInvalidPermissions.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GithubIntegration.testGetApp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GithubIntegration.testGetAppInstallation.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GithubIntegration.testGetGithubForInstallation.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GithubIntegration.testGetInstallationNotFound.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GithubIntegration.testGetInstallationWithExpiredJWT.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GithubIntegration.testGetInstallations.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GithubIntegration.testGetOrgInstallation.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GithubIntegration.testGetRepoInstallation.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GithubIntegration.testGetUserInstallation.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GlobalAdvisory.testAttributes.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GlobalAdvisory.testNewlyReleased.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GraphQl.testDefaultUrl.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GraphQl.testOtherPort.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/GraphQl.testOtherUrl.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Hook.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Hook.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Hook.testEditWithAllParameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Hook.testEditWithMinimalParameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Hook.testPing.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Hook.testTest.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Installation.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Installation.testGetGithubForInstallation.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Installation.testGetRepos.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testAddAndRemoveAssignees.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testAddAndRemoveLabels.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testAddAndRemoveLabelsWithStringArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testAttributes.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testCreateComment.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testCreateReaction.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testDeleteAndSetLabels.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testDeleteAndSetLabelsWithStringArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testDeleteReaction.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testEditResetAssignee.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testEditResetMilestone.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testEditWithAllParameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testEditWithStateReasonNotPlanned.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testEditWithStateReasonReopened.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testEditWithoutParameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testGetComments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testGetCommentsSince.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testGetEvents.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testGetLabels.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testGetReactions.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testGetTimeline.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testLock.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue.testUnlock.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue131.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue131.testGetPullWithOrgHeadUser.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue131.testGetPullsWithOrgHeadUser.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue133.testGetPageWithoutInitialArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue134.testGetAuthorizationsFailsWhenAutenticatedThroughOAuth.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue134.testGetAuthorizationsSucceedsWhenAutenticatedThroughLoginPassword.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue134.testGetOAuthScopesFromHeader.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue139.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue139.testCompletion.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue140.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue140.testGetDirContents.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue140.testGetDirContentsThenLazyCompletionOfFile.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue140.testGetDirContentsWithRef.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue140.testGetFileContents.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue142.testDecodeJson.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue174.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue174.testGetDirContentsWhithHttpRedirect.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue214.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue214.testAssignees.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue214.testCollaborators.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue214.testCreateIssue.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue214.testEditIssue.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue214.testGetIssues.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue216.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue216.testIteration.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue278.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue278.testIteration.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue33.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue33.testClosedIssues.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue33.testOpenIssues.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue494.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue50.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue50.testAddLabelToIssue.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue50.testCreateIssueWithLabel.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue50.testCreateLabel.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue50.testGetIssuesWithLabel.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue50.testGetLabel.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue50.testGetLabels.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue50.testIssueGetLabels.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue50.testRemoveLabelFromIssue.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue50.testSetIssueLabels.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue54.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue54.testConversion.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue572.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue572.testIssueAsPullRequest.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue572.testPullReqeustAsIssue.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue80.testIgnoreHttpsFromGithubEnterprise.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue80.testIgnoreHttpsFromGithubEnterpriseWithPort.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue823.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue823.testGetPendingInvitationAttributes.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue87.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue87.testCreateIssueWithEscapedPercentInBody.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue87.testCreateIssueWithEscapedPercentInTitle.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue87.testCreateIssueWithPercentInBody.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue87.testCreateIssueWithPercentInTitle.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue937.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue937.testCollaboratorsAffiliation.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue945.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Issue945.testReservedPaginatedListAttributePreservation.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/IssueComment.testCreateReaction.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/IssueComment.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/IssueComment.testDeleteReaction.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/IssueComment.testEdit.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/IssueComment.testGetReactions.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/IssueEvent.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Label.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Label.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Label.testEdit.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/LazyRepository.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/LazyRepository.testChangeAutomateFixWhenNoVulnerabilityAlert.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/LazyRepository.testDisableAutomatedSecurityFixes.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/LazyRepository.testDisableVulnerabilityAlert.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/LazyRepository.testEnableAutomatedSecurityFixes.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/LazyRepository.testEnableVulnerabilityAlert.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/LazyRepository.testGetIssues.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/LazyRepository.testGetUser.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/LazyRepository.testGetVulnerabilityAlert.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/LazyRepository.testGetVulnerabilityAlertWhenTurnedOff.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/LazyRepository.testOwner.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/License.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Logging.testLoggingWithBaseUrl.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Logging.testLoggingWithBasicAuthentication.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Logging.testLoggingWithOAuthAuthentication.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Logging.testLoggingWithoutAuthentication.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Markdown.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Markdown.testRenderGithubFlavoredMarkdown.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Markdown.testRenderMarkdown.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Migration.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Migration.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Migration.testGetArchiveUrlWhenDeleted.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Migration.testGetArchiveUrlWhenExported.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Migration.testGetArchiveUrlWhenNotExported.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Migration.testGetStatus.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Migration.testUnlockRepo.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Milestone.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Milestone.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Milestone.testEditWithAllParameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Milestone.testEditWithMinimalParameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Milestone.testGetLabels.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.testAttributesOfOtherUser.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.testGetEvents.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.testGetFollowers.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.testGetFollowing.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.testGetGists.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.testGetKeys.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.testGetOrganizationMembership.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.testGetOrganizationMembershipNotMember.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.testGetOrgs.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.testGetPublicEvents.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.testGetPublicReceivedEvents.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.testGetReceivedEvents.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.testGetRepo.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.testGetRepos.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.testGetReposWithAllArgs.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.testGetStarred.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.testGetSubscriptions.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.testGetWatched.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.testHasInFollowing.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser.testUserEquality.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser1430.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/NamedUser1430.testGetProjects.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Notification.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Notification.testMarkAsRead.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testAddMembersAdminRole.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testAddMembersDefaultRole.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testCreateFork.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testCreateHookWithAllParameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testCreateHookWithMinimalParameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testCreateMigration.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testCreateRepoFromTemplate.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testCreateRepoFromTemplateWithAllArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testCreateRepoWithAllArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testCreateRepoWithMinimalArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testCreateRepositoryWithAutoInit.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testCreateSecretSelected.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testCreateTeam.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testCreateTeamWithAllArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testCreateVariable.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testCreateVariableSelected.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testDeleteHook.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testEditHookWithAllParameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testEditHookWithMinimalParameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testEditWithAllArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testEditWithoutArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetDependabotAlerts.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetDependabotAlertsWithAllArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetDependabotSecrets.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetEvents.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetHook.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetHookDeliveries.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetHookDelivery.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetHooks.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetInstallations.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetIssues.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetIssuesWithAllArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetMembers.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetMigrations.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetOutsideCollaborators.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetPublicMembers.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetRepos.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetReposSorted.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetReposWithType.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetSecret.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetSecrets.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetTeamBySlug.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetTeams.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetVariable.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testGetVariables.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testInviteUserAsNonOwner.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testInviteUserByEmail.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testInviteUserByName.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testInviteUserWithBoth.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testInviteUserWithRoleAndTeam.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testIssue2030CreateProject.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testMembers.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testOrgVariable.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testOutsideCollaborators.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization.testPublicMembers.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization1437.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization1437.testCreateProject.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization2072.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Organization2072.testCancelInvitation.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/OrganizationHasInMembers.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testCustomPerPage.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testCustomPerPageWithGetPage.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testCustomPerPageWithNoUrlParams2.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testGetFirstPage.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testGetThirdPage.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testGettingTheReversedListDoesNotModifyTheOriginalList.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testIntIndexingAfterIteration.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testIntIndexingInFirstPage.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testIntIndexingInThirdPage.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testInterruptedIteration.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testInterruptedIterationInSlice.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testIteration.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testIterationWithPrefetchedFirstPage.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testNoFirstPage.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testReversedIterationSupportsIterator.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testReversedIterationWithMultiplePages.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testReversedIterationWithSinglePage.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testSeveralIterations.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testSliceIndexingInFirstPage.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testSliceIndexingUntilEnd.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testSliceIndexingUntilFourthPage.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testTotalCountWithDictionary.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PaginatedList.testTotalCountWithNoLastPage.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Permissions.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Persistence.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Persistence.testLoadAndUpdate.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PoolSize.testReturnsRepoAfterSettingPoolSize.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PoolSize.testReturnsRepoAfterSettingPoolSizeHttp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Project.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Project.testCreateCardFromIssue.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Project.testCreateCardWithNote.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Project.testCreateColumn.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Project.testEditCardArchived.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Project.testEditCardNote.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Project.testEditCardWithoutParameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Project.testGetAllProjectCards.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Project.testGetOrganizationProjects.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Project.testGetProject.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Project.testGetProjectCardContent.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Project.testGetRepositoryProjects.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Project.testProjectAttributes.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Project.testProjectCardAttributes.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Project.testProjectCardDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Project.testProjectCardMove.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Project.testProjectColumnAttributes.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Project1434.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Project1434.testEditWithAllParameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Project1434.testEditWithoutParameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ProjectColumn.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ProjectColumn.testCreateCard.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ProjectColumn.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ProjectColumn.testEdit.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ProjectColumn.testGetAllCards.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ProjectColumn.testGetArchivedCards.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ProjectColumn.testGetCards.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ProjectColumn.testGetNotArchivedCards.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ProjectColumn.testGetProjectColumn.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ProjectColumn.testMoveAfter.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ProjectColumn.testMoveFirst.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ProjectColumn.testMoveLast.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PublicKey.testAttributes.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PublicKey.testAttributes_with_int_key_id.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testAddAndRemoveAssignees.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testAddAndRemoveLabels.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testAddAndRemoveLabelsWithStringArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testCreateComment.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testCreateIssueComment.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testCreateMultilineReviewComment.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testCreateMultilineReviewCommentAsSuggestion.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testCreateMultilineReviewCommentChoosingSide.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testCreateReviewCommentInReplyTo.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testCreateReviewCommentSubjectType.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testDeleteAndSetLabels.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testDeleteAndSetLabelsWithStringArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testDisableAutomerge.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testEditWithAllArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testEditWithoutArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testEnableAutomerge.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testEnableAutomergeDefaultValues.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testEnableAutomergeError.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testGetComments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testGetCommits.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testGetFiles.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testGetIssueComment.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testGetIssueComments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testGetIssueEvents.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testGetLabels.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testGetReviewComments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testMerge.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testMergeWithCommitMessage.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testReviewRequests.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest.testUpdateBranch.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest1168.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest1168.testGetIssue.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest1168.testGetPullRequest.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest1169.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest1169.testReviewApproveWithoutBody.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest1375.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest1375.testCreateReviewCommentReply.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest1682.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest1682.test_no_parameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest1682.test_object_parameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest1682.test_string_parameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest1684.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest1684.testDeleteRunnerId.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest1684.testDeleteRunnerObject.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest1684.testGetRunners.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest2408.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequest2408.test_get_workflow_runs.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequestComment.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequestComment.testCreateReaction.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequestComment.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequestComment.testDeleteReaction.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequestComment.testEdit.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequestComment.testGetReactions.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequestFile.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequestReview.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequestReview.testAttributes.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequestReview.testDismiss.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequestReview.testEdit.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequestReview1856.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/PullRequestReview1856.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RateLimiting.testGetRateLimit.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RateLimiting.testRateLimiting.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RateLimiting.testResetTime.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RawData.testCompletedObject.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RawData.testNonCompletableObject.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RawData.testNotYetCompletedObject.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Reaction.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Reaction.testAttributes.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Reaction.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ReleaseAsset.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ReleaseAsset.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ReleaseAsset.testUpdate.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ReleaseModify.testCreateGitTagAndRelease.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ReleaseModify.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ReleaseModify.testUpdate.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ReleaseModify.testUploadAsset.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ReleaseModify.testUploadAssetFileLike.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ReleaseModify.testUploadAssetFromMemory.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ReleaseModify.testUploadAssetWithName.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ReleaseRead.testAttributes.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ReleaseRead.testGetAssets.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ReleaseRead.testGetLatestRelease.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/ReleaseRead.testGetRelease.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testAssignees.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testBadSubscribePubSubHubbub.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCodeScanAlerts.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCollaboratorPermission.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCollaboratorPermissionNoPushAccess.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCollaborators.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCompare.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCompareCommitPagination.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateAutolink.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateDeployment.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateFile.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateFork.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateForkOrg.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateGitBlob.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateGitCommit.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateGitCommitWithAllArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateGitCommitWithParents.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateGitRef.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateGitRelease.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateGitReleaseWithAllArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateGitTag.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateGitTagWithAllArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateGitTree.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateGitTreeWithBaseTree.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateGitTreeWithNullSha.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateGitTreeWithSha.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateHookWithAllParameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateHookWithMinimalParameters.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateIssue.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateIssueWithAllArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateIssueWithAllArgumentsStringLabel.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateKey.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateLabel.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateMilestone.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateMilestoneWithMinimalArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateProject.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreatePull.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreatePullFromIssue.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateRepositoryDispatch.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testCreateSourceImport.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testDeleteFile.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testDeleteSecret.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testEditWithDefaultBranch.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testEditWithoutArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetArchiveLink.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetAutolinks.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetBranch.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetComments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetCommits.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetCommitsWithArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetCommitsWithAuthor.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetCommitsWithSinceUntil.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetContents.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetContentsDir.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetContentsDirWithSlash.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetContentsWithRef.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetContributors.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetDeployments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetDownloads.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetEvents.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetForks.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetGitRef.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetGitRefWithIssue102Reverted.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetGitRefs.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetGitTreeWithRecursive.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetHookDeliveries.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetHookDelivery.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetHooks.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetIssues.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetIssuesComments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetIssuesEvents.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetIssuesWithArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetIssuesWithWildcards.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetKeys.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetLabel.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetLabels.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetLanguages.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetLicense.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetMatchingRefs.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetMilestones.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetMilestonesWithArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetNetworkEvents.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetPendingInvitations.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetPulls.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetPullsComments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetPullsWithArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetRepositoryWith301Redirect.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetSourceImport.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetStargazers.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetStargazersWithDates.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetSubscribers.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetTeams.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetTopics.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetWatchers.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetWorkflowId.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetWorkflowRuns.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testGetWorkflows.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testLegacySearchIssues.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testMarkNotificationsAsRead.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testMergeWithConflict.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testMergeWithMessage.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testMergeWithNothingToDo.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testMergeWithoutMessage.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testRemoveAutolink.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testRemoveInvitation.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testRenameBranchObject.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testRenameBranchString.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testReplaceTopics.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testRepoSecrets.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testRepoVariable.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testRepoVariables.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testSearchIssues.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testStatisticsCodeFrequency.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testStatisticsCommitActivity.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testStatisticsContributors.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testStatisticsParticipation.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testStatisticsPunchCard.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testSubscribePubSubHubbub.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testUnsubscribePubSubHubbub.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Repository.testUpdateFile.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RepositoryAdvisory.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RepositoryAdvisory.testAddVulnerability.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RepositoryAdvisory.testCreateRepositoryAdvisory.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RepositoryAdvisory.testGetAdvisories.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RepositoryAdvisory.testOfferCredit.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RepositoryAdvisory.testOfferCredits.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RepositoryAdvisory.testRemoveCredit.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RepositoryAdvisory.testRepositoryWithNoAdvisories.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RepositoryAdvisory.testUpdateRepositoryAdvisory.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RepositoryAdvisory.testUpdateSingleFieldDoesNotRemoveOtherFields.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RepositoryKey.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Requester.testBaseUrlHostRedirection.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Requester.testBaseUrlPortRedirection.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Requester.testBaseUrlPrefixRedirection.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Requester.testBaseUrlSchemeRedirection.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Requester.testLoggingRedirection.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RequesterThrottled.testShouldDeferRequests.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RequesterThrottled.testShouldDeferWrites.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RequesterUnThrottled.testShouldNotDeferRequests.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RequiredPullRequestReviews.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RequiredPullRequestReviews.testOrganizationOwnedTeam.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/RequiredStatusChecks.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Retry.testRaisesRetryErrorAfterMaxRetries.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Retry.testReturnsRepoAfter1Retry.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Retry.testReturnsRepoAfter3Retries.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Retry.testReturnsRepoAfterSettingRetryHttp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Retry.testShouldNotRetryWhenStatusNotOnList.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Search.testGetPageOnSearchUsers.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Search.testPaginateSearchCommits.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Search.testPaginateSearchTopics.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Search.testPaginateSearchUsers.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Search.testSearchCode.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Search.testSearchCommits.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Search.testSearchHighlightingCode.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Search.testSearchIssues.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Search.testSearchRepos.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Search.testSearchReposWithNoResults.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Search.testSearchTopics.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Search.testSearchUsers.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Search.testUrlquotingOfQualifiers.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Search.testUrlquotingOfQuery.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/SelfHostedActionsRunner.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/SelfHostedActionsRunner.testAttributes.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/SourceImport.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/SourceImport.testUpdate.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/SpecificExceptions.test2FARequired.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/SpecificExceptions.testAuthenticatedRateLimitExceeded.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/SpecificExceptions.testBadCredentials.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/SpecificExceptions.testBadUserAgent.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/SpecificExceptions.testRateLimitExceeded.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/SpecificExceptions.testUnknownObject.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Tag.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Team.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Team.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Team.testDiscussions.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Team.testEditWithAllArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Team.testEditWithoutArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Team.testGetTeams.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Team.testMembers.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Team.testRepoPermission.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Team.testRepos.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Team.testTeamMembership.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Team.testUpdateTeamRepository.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Topic.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Traffic.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Traffic.testGetClones.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Traffic.testGetPaths.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Traffic.testGetReferrers.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Traffic.testGetViews.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/UserKey.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/UserKey.testDelete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Workflow.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Workflow.testCreateDispatchForNonTriggerEnabled.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Workflow.testCreateDispatchWithBranch.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Workflow.testCreateDispatchWithString.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Workflow.testCreateDispatchWithTag.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Workflow.testGetRunsWithHeadSha.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Workflow.testGetRunsWithNoArguments.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Workflow.testGetRunsWithObjects.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/Workflow.testGetRunsWithStrings.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/WorkflowJob.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/WorkflowJob.testAttributes.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/WorkflowRun.setUp.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/WorkflowRun.test_cancel.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/WorkflowRun.test_delete.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/WorkflowRun.test_jobs.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/WorkflowRun.test_rerun.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/WorkflowRun.test_rerun_with_successful_run.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/ReplayData/WorkflowRun.test_timing.txt +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/RepositoryAdvisory.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Requester.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/RequiredStatusChecks.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Retry.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Search.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/SelfHostedActionsRunner.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/SourceImport.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Tag.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Topic.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/Traffic.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/UserKey.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/__init__.py +0 -0
- {PyGithub-2.2.0 → pygithub-2.4.0}/tests/conftest.py +0 -0
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
branches:
|
|
5
|
+
- main
|
|
6
|
+
- release-v*
|
|
7
|
+
pull_request:
|
|
8
|
+
merge_group:
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
|
|
12
|
+
build:
|
|
13
|
+
uses: "./.github/workflows/_build-pkg.yml"
|
|
14
|
+
with:
|
|
15
|
+
artifact-name: package
|
|
16
|
+
|
|
17
|
+
test:
|
|
18
|
+
runs-on: ${{ matrix.os }}
|
|
19
|
+
name: test (Python ${{ matrix.python-version }} on ${{ matrix.os-label }})
|
|
20
|
+
strategy:
|
|
21
|
+
fail-fast: false
|
|
22
|
+
matrix:
|
|
23
|
+
# keep in sync with tox.ini [gh-actions] section
|
|
24
|
+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
|
25
|
+
os: ["ubuntu-latest"]
|
|
26
|
+
os-label: ["Ubuntu"]
|
|
27
|
+
include:
|
|
28
|
+
- {python-version: "3.8", os: "windows-latest", os-label: "Windows"}
|
|
29
|
+
- {python-version: "3.8", os: "macos-latest", os-label: "macOS"}
|
|
30
|
+
steps:
|
|
31
|
+
- uses: actions/checkout@v3
|
|
32
|
+
- name: Set up Python
|
|
33
|
+
uses: actions/setup-python@v4
|
|
34
|
+
with:
|
|
35
|
+
python-version: "${{ matrix.python-version }}"
|
|
36
|
+
- name: Install tox
|
|
37
|
+
run: |
|
|
38
|
+
python -m pip install --upgrade pip
|
|
39
|
+
pip install tox tox-gh-actions
|
|
40
|
+
- name: Run tests
|
|
41
|
+
run: tox
|
|
42
|
+
- name: Upload coverage to Codecov
|
|
43
|
+
uses: codecov/codecov-action@v3
|
|
44
|
+
|
|
45
|
+
test_success:
|
|
46
|
+
# this aggregates success state of all jobs listed in `needs`
|
|
47
|
+
# this is the only required check to pass CI
|
|
48
|
+
name: "Test success"
|
|
49
|
+
if: always()
|
|
50
|
+
runs-on: ubuntu-latest
|
|
51
|
+
needs: [test]
|
|
52
|
+
steps:
|
|
53
|
+
- name: "Success"
|
|
54
|
+
if: needs.test.result == 'success'
|
|
55
|
+
run: true
|
|
56
|
+
shell: bash
|
|
57
|
+
- name: "Failure"
|
|
58
|
+
if: needs.test.result != 'success'
|
|
59
|
+
run: false
|
|
60
|
+
shell: bash
|
|
61
|
+
|
|
62
|
+
draft:
|
|
63
|
+
runs-on: ubuntu-latest
|
|
64
|
+
needs: test_success
|
|
65
|
+
if: github.ref == 'refs/heads/main'
|
|
66
|
+
steps:
|
|
67
|
+
- uses: release-drafter/release-drafter@v5
|
|
68
|
+
env:
|
|
69
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
############################ Copyrights and license ############################
|
|
2
|
+
# #
|
|
3
|
+
# Copyright 2012 Vincent Jacques <vincent@vincent-jacques.net> #
|
|
4
|
+
# Copyright 2013 AKFish <akfish@gmail.com> #
|
|
5
|
+
# Copyright 2013 Vincent Jacques <vincent@vincent-jacques.net> #
|
|
6
|
+
# Copyright 2014 Nic Dahlquist <nic@snapchat.com> #
|
|
7
|
+
# Copyright 2014 Vincent Jacques <vincent@vincent-jacques.net> #
|
|
8
|
+
# Copyright 2016 Peter Buckley <dx-pbuckley@users.noreply.github.com> #
|
|
9
|
+
# Copyright 2017 Chris McBride <thehighlander@users.noreply.github.com> #
|
|
10
|
+
# Copyright 2017 Colin Hoglund <colinhoglund@users.noreply.github.com> #
|
|
11
|
+
# Copyright 2018 Vinay Hegde <hegde.vi@husky.neu.edu> #
|
|
12
|
+
# Copyright 2018 sfdye <tsfdye@gmail.com> #
|
|
13
|
+
# Copyright 2020 Steve Kowalik <steven@wedontsleep.org> #
|
|
14
|
+
# Copyright 2020 Wan Liuyang <tsfdye@gmail.com> #
|
|
15
|
+
# Copyright 2023 Enrico Minack <github@enrico.minack.dev> #
|
|
16
|
+
# Copyright 2023 Sol Redfern <59831933+Tsuesun@users.noreply.github.com> #
|
|
17
|
+
# Copyright 2024 Aiden Grossman <agrossman154@yahoo.com> #
|
|
18
|
+
# Copyright 2024 Enrico Minack <github@enrico.minack.dev> #
|
|
19
|
+
# Copyright 2024 Jacky Lam <jacky.lam@r2studiohk.com> #
|
|
20
|
+
# #
|
|
21
|
+
# This file is part of PyGithub. #
|
|
22
|
+
# http://pygithub.readthedocs.io/ #
|
|
23
|
+
# #
|
|
24
|
+
# PyGithub is free software: you can redistribute it and/or modify it under #
|
|
25
|
+
# the terms of the GNU Lesser General Public License as published by the Free #
|
|
26
|
+
# Software Foundation, either version 3 of the License, or (at your option) #
|
|
27
|
+
# any later version. #
|
|
28
|
+
# #
|
|
29
|
+
# PyGithub is distributed in the hope that it will be useful, but WITHOUT ANY #
|
|
30
|
+
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS #
|
|
31
|
+
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more #
|
|
32
|
+
# details. #
|
|
33
|
+
# #
|
|
34
|
+
# You should have received a copy of the GNU Lesser General Public License #
|
|
35
|
+
# along with PyGithub. If not, see <http://www.gnu.org/licenses/>. #
|
|
36
|
+
# #
|
|
37
|
+
################################################################################
|
|
38
|
+
|
|
39
|
+
.DS_Store
|
|
40
|
+
|
|
41
|
+
*.pyc
|
|
42
|
+
.eggs/
|
|
43
|
+
.python-version
|
|
44
|
+
|
|
45
|
+
/GithubCredentials.py
|
|
46
|
+
/scripts/TwitterCredentials.py
|
|
47
|
+
/dist/
|
|
48
|
+
/build/
|
|
49
|
+
/MANIFEST
|
|
50
|
+
/PyGithub.egg-info/
|
|
51
|
+
/.coverage
|
|
52
|
+
/coverage.xml
|
|
53
|
+
/.idea
|
|
54
|
+
/developer.github.com/
|
|
55
|
+
/gh-pages/
|
|
56
|
+
/doc/doctrees/
|
|
57
|
+
.vscode*
|
|
58
|
+
.venv
|
|
59
|
+
venv
|
|
60
|
+
.tox/
|
|
61
|
+
.mypy_cache/
|
|
62
|
+
*.swp
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
default_language_version:
|
|
2
|
+
python: python3
|
|
3
|
+
|
|
4
|
+
repos:
|
|
5
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
6
|
+
rev: v4.5.0
|
|
7
|
+
hooks:
|
|
8
|
+
- id: end-of-file-fixer
|
|
9
|
+
- id: trailing-whitespace
|
|
10
|
+
- id: check-symlinks
|
|
11
|
+
- id: destroyed-symlinks
|
|
12
|
+
- id: mixed-line-ending
|
|
13
|
+
args:
|
|
14
|
+
- "--fix=lf"
|
|
15
|
+
|
|
16
|
+
- repo: https://github.com/asottile/pyupgrade
|
|
17
|
+
rev: v3.15.0
|
|
18
|
+
hooks:
|
|
19
|
+
- id: pyupgrade
|
|
20
|
+
args: ["--py38-plus"]
|
|
21
|
+
|
|
22
|
+
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
23
|
+
rev: v0.1.7
|
|
24
|
+
hooks:
|
|
25
|
+
- id: ruff
|
|
26
|
+
args:
|
|
27
|
+
- "--fix"
|
|
28
|
+
- "--fixable=ALL"
|
|
29
|
+
- "--exit-non-zero-on-fix"
|
|
30
|
+
|
|
31
|
+
- repo: https://github.com/codespell-project/codespell
|
|
32
|
+
rev: v2.2.6
|
|
33
|
+
hooks:
|
|
34
|
+
- id: codespell
|
|
35
|
+
additional_dependencies: [tomli]
|
|
36
|
+
|
|
37
|
+
- repo: https://github.com/PyCQA/docformatter
|
|
38
|
+
rev: v1.7.5
|
|
39
|
+
hooks:
|
|
40
|
+
- id: docformatter
|
|
41
|
+
additional_dependencies: [tomli]
|
|
42
|
+
args: ["--in-place"]
|
|
43
|
+
|
|
44
|
+
- repo: https://github.com/psf/black
|
|
45
|
+
rev: 23.12.0
|
|
46
|
+
hooks:
|
|
47
|
+
- id: black
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
# Contributing
|
|
2
|
+
|
|
3
|
+
## Issues
|
|
4
|
+
|
|
5
|
+
A good issue includes a [short, self contained, correct example](http://sscce.org/) of the problem, something like:
|
|
6
|
+
|
|
7
|
+
```python
|
|
8
|
+
assert github.Github().get_user("jacquev6").name == "Vincent Jacques"
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
It is even better if you provide the debug logs associated with your issue.
|
|
12
|
+
Enable them with `github.enable_console_debug_logging` and copy them in the body of the issue.
|
|
13
|
+
**Warning:** you may want to remove some private information (authentication information is removed, but there may be private stuff in the messages)
|
|
14
|
+
|
|
15
|
+
If for any reason you are not able to do that, open your issue anyway and a maintainer will see what is needed to solve your problem.
|
|
16
|
+
|
|
17
|
+
## Pull Requests
|
|
18
|
+
|
|
19
|
+
Pull Requests should clearly describe two things:
|
|
20
|
+
|
|
21
|
+
1. The problem they attempt to solve
|
|
22
|
+
2. How the author went about solving the problem
|
|
23
|
+
|
|
24
|
+
Ideally, changes should be made in logical commits and tests added to improve the project's coverage of the GitHub API.
|
|
25
|
+
|
|
26
|
+
## Coding style
|
|
27
|
+
|
|
28
|
+
PyGithub adopts the black coding style.
|
|
29
|
+
|
|
30
|
+
To manually format the code:
|
|
31
|
+
```bash
|
|
32
|
+
tox -e lint
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Pre-commit plugin
|
|
36
|
+
|
|
37
|
+
To forget about coding style and let [pre-commit](https://pre-commit.com/#installation) fix your flake8/isort/black issue.
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
pre-commit install
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
That's it!
|
|
44
|
+
|
|
45
|
+
## Adding missing attributes for a GithubObject
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
$ python scripts/add_attribute.py [class_name] [attribute_name] [attribute_type]
|
|
49
|
+
|
|
50
|
+
# For example, if you want to add a `url` attribute of string type to the Commit class
|
|
51
|
+
# Note: adding multiple attributes you have to run the script multiple times
|
|
52
|
+
|
|
53
|
+
$ python scripts/add_attribute.py Commit url string
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## Deprecation warning
|
|
57
|
+
|
|
58
|
+
Before removing attributes/methods, consider adding deprecation warnings instead. The [Deprecated](https://github.com/tantale/deprecated) packages provides a handy decorator to add deprecation warnings with an optional reason.
|
|
59
|
+
|
|
60
|
+
```python
|
|
61
|
+
from deprecated import deprecated
|
|
62
|
+
|
|
63
|
+
@property
|
|
64
|
+
@deprecated
|
|
65
|
+
def rate(self):
|
|
66
|
+
pass
|
|
67
|
+
|
|
68
|
+
@deprecated(reason="Deprecated in favor of the new branch protection")
|
|
69
|
+
def get_protected_branch(self):
|
|
70
|
+
pass
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
## Automated tests
|
|
74
|
+
|
|
75
|
+
First you need to install the test dependencies:
|
|
76
|
+
```bash
|
|
77
|
+
pip install -r requirements/test.txt
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
Then you can run the tests through `pytest`.
|
|
81
|
+
Run a specific test with `pytest tests/tests_filename.py` or `pytest tests/tests_filename.py -k testMethod` or `pytest -k TestClass.testMethod`.
|
|
82
|
+
|
|
83
|
+
If you add a new test, for example `Issue139.testCompletion`, you have to run `pytest -k Issue139.testCompletion --record` to create the `tests/ReplayData/*.txt` files needed for your new test.
|
|
84
|
+
Check them and commit them as well.
|
|
85
|
+
You will need a `GithubCredentials.py` file at the root of the project with the following contents:
|
|
86
|
+
|
|
87
|
+
```python
|
|
88
|
+
login = "my_login"
|
|
89
|
+
password = "my_password" # Can be left empty if not used
|
|
90
|
+
oauth_token = "my_token" # Can be left empty if not used
|
|
91
|
+
jwt = "my_json_web_token" # Can be left empty if not used
|
|
92
|
+
app_id = "my_app_id" # Can be left empty if not used
|
|
93
|
+
app_private_key = "my_app_private_key" # Can be left empty if not used
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
If you use 2 factor authentication on your Github account, tests that require a login/password authentication will fail.
|
|
97
|
+
You can use `pytest Issue139.testCompletion --record --auth_with_token` to use the `oauth_token` field specified in `GithubCredentials.py` when recording a unit test interaction. Note that the `password = ""` (empty string is ok) must still be present in `GithubCredentials.py` to run the tests even when the `--auth_with_token` arg is used.
|
|
98
|
+
|
|
99
|
+
Also note that if you record your test data with `--auth_with_token` then you also need to be in token authentication mode when running the test. You can do this by setting `tokenAuthMode` to be true like so:
|
|
100
|
+
|
|
101
|
+
```python
|
|
102
|
+
def setUp(self):
|
|
103
|
+
self.tokenAuthMode = True
|
|
104
|
+
super().setUp()
|
|
105
|
+
...
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
A simple alternative is to replace `token private_token_removed` with `Basic login_and_password_removed` in all your newly generated ReplayData files.
|
|
109
|
+
|
|
110
|
+
Similarly, you can use `pytest Issue139.testCompletion --record --auth_with_jwt` to use the `jwt` field specified in `GithubCredentials.py` to access endpoints that require JWT.
|
|
111
|
+
|
|
112
|
+
To run manual tests with external scripts that use the PyGithub package, you can install your development version with:
|
|
113
|
+
|
|
114
|
+
```bash
|
|
115
|
+
pip install --editable path/to/project
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
You may also want to investigate `tox` to run tests:
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
pip install tox
|
|
122
|
+
tox -epy310
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
## Build documentation locally
|
|
126
|
+
|
|
127
|
+
```bash
|
|
128
|
+
pip install -r requirements/docs.txt
|
|
129
|
+
sphinx-build doc build
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
If you use tox:
|
|
133
|
+
|
|
134
|
+
```bash
|
|
135
|
+
tox -edocs
|
|
136
|
+
```
|
pygithub-2.4.0/PKG-INFO
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: PyGithub
|
|
3
|
+
Version: 2.4.0
|
|
4
|
+
Summary: Use the full Github API v3
|
|
5
|
+
Author-email: Vincent Jacques <vincent@vincent-jacques.net>
|
|
6
|
+
Project-URL: Documentation, https://pygithub.readthedocs.io/en/stable/
|
|
7
|
+
Project-URL: Source, https://github.com/pygithub/pygithub
|
|
8
|
+
Project-URL: Tracker, https://github.com/pygithub/pygithub/issues
|
|
9
|
+
Keywords: github
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Environment :: Web Environment
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Topic :: Software Development
|
|
23
|
+
Requires-Python: >=3.8
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
License-File: COPYING
|
|
26
|
+
License-File: COPYING.LESSER
|
|
27
|
+
Requires-Dist: pynacl>=1.4.0
|
|
28
|
+
Requires-Dist: requests>=2.14.0
|
|
29
|
+
Requires-Dist: pyjwt[crypto]>=2.4.0
|
|
30
|
+
Requires-Dist: typing-extensions>=4.0.0
|
|
31
|
+
Requires-Dist: urllib3>=1.26.0
|
|
32
|
+
Requires-Dist: Deprecated
|
|
33
|
+
Provides-Extra: integrations
|
|
34
|
+
|
|
35
|
+
# PyGitHub
|
|
36
|
+
|
|
37
|
+
[](https://pypi.python.org/pypi/PyGithub)
|
|
38
|
+

|
|
39
|
+
[](https://pygithub.readthedocs.io/en/stable/?badge=stable)
|
|
40
|
+
[](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License)
|
|
41
|
+
[](https://join.slack.com/t/pygithub-project/shared_invite/zt-duj89xtx-uKFZtgAg209o6Vweqm8xeQ)
|
|
42
|
+
[](https://www.codetriage.com/pygithub/pygithub)
|
|
43
|
+
[](https://codecov.io/gh/PyGithub/PyGithub)
|
|
44
|
+
[](https://github.com/psf/black)
|
|
45
|
+
|
|
46
|
+
PyGitHub is a Python library to access the [GitHub REST API].
|
|
47
|
+
This library enables you to manage [GitHub] resources such as repositories, user profiles, and organizations in your Python applications.
|
|
48
|
+
|
|
49
|
+
[GitHub REST API]: https://docs.github.com/en/rest
|
|
50
|
+
[GitHub]: https://github.com
|
|
51
|
+
|
|
52
|
+
## Install
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
pip install PyGithub
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Simple Demo
|
|
59
|
+
|
|
60
|
+
```python
|
|
61
|
+
from github import Github
|
|
62
|
+
|
|
63
|
+
# Authentication is defined via github.Auth
|
|
64
|
+
from github import Auth
|
|
65
|
+
|
|
66
|
+
# using an access token
|
|
67
|
+
auth = Auth.Token("access_token")
|
|
68
|
+
|
|
69
|
+
# First create a Github instance:
|
|
70
|
+
|
|
71
|
+
# Public Web Github
|
|
72
|
+
g = Github(auth=auth)
|
|
73
|
+
|
|
74
|
+
# Github Enterprise with custom hostname
|
|
75
|
+
g = Github(base_url="https://{hostname}/api/v3", auth=auth)
|
|
76
|
+
|
|
77
|
+
# Then play with your Github objects:
|
|
78
|
+
for repo in g.get_user().get_repos():
|
|
79
|
+
print(repo.name)
|
|
80
|
+
|
|
81
|
+
# To close connections after use
|
|
82
|
+
g.close()
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
## Documentation
|
|
86
|
+
|
|
87
|
+
More information can be found on the [PyGitHub documentation site.](https://pygithub.readthedocs.io/en/stable/introduction.html)
|
|
88
|
+
|
|
89
|
+
## Development
|
|
90
|
+
|
|
91
|
+
### Contributing
|
|
92
|
+
|
|
93
|
+
Long-term discussion and bug reports are maintained via GitHub Issues.
|
|
94
|
+
Code review is done via GitHub Pull Requests.
|
|
95
|
+
|
|
96
|
+
For more information read [CONTRIBUTING.md].
|
|
97
|
+
|
|
98
|
+
[CONTRIBUTING.md]: https://github.com/PyGithub/PyGithub/blob/main/CONTRIBUTING.md
|
|
99
|
+
|
|
100
|
+
### Maintainership
|
|
101
|
+
|
|
102
|
+
We're actively seeking maintainers that will triage issues and pull requests and cut releases.
|
|
103
|
+
If you work on a project that leverages PyGitHub and have a vested interest in keeping the code alive and well, send an email to someone in the MAINTAINERS file.
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: PyGithub
|
|
3
|
+
Version: 2.4.0
|
|
4
|
+
Summary: Use the full Github API v3
|
|
5
|
+
Author-email: Vincent Jacques <vincent@vincent-jacques.net>
|
|
6
|
+
Project-URL: Documentation, https://pygithub.readthedocs.io/en/stable/
|
|
7
|
+
Project-URL: Source, https://github.com/pygithub/pygithub
|
|
8
|
+
Project-URL: Tracker, https://github.com/pygithub/pygithub/issues
|
|
9
|
+
Keywords: github
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Environment :: Web Environment
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Topic :: Software Development
|
|
23
|
+
Requires-Python: >=3.8
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
License-File: COPYING
|
|
26
|
+
License-File: COPYING.LESSER
|
|
27
|
+
Requires-Dist: pynacl>=1.4.0
|
|
28
|
+
Requires-Dist: requests>=2.14.0
|
|
29
|
+
Requires-Dist: pyjwt[crypto]>=2.4.0
|
|
30
|
+
Requires-Dist: typing-extensions>=4.0.0
|
|
31
|
+
Requires-Dist: urllib3>=1.26.0
|
|
32
|
+
Requires-Dist: Deprecated
|
|
33
|
+
Provides-Extra: integrations
|
|
34
|
+
|
|
35
|
+
# PyGitHub
|
|
36
|
+
|
|
37
|
+
[](https://pypi.python.org/pypi/PyGithub)
|
|
38
|
+

|
|
39
|
+
[](https://pygithub.readthedocs.io/en/stable/?badge=stable)
|
|
40
|
+
[](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License)
|
|
41
|
+
[](https://join.slack.com/t/pygithub-project/shared_invite/zt-duj89xtx-uKFZtgAg209o6Vweqm8xeQ)
|
|
42
|
+
[](https://www.codetriage.com/pygithub/pygithub)
|
|
43
|
+
[](https://codecov.io/gh/PyGithub/PyGithub)
|
|
44
|
+
[](https://github.com/psf/black)
|
|
45
|
+
|
|
46
|
+
PyGitHub is a Python library to access the [GitHub REST API].
|
|
47
|
+
This library enables you to manage [GitHub] resources such as repositories, user profiles, and organizations in your Python applications.
|
|
48
|
+
|
|
49
|
+
[GitHub REST API]: https://docs.github.com/en/rest
|
|
50
|
+
[GitHub]: https://github.com
|
|
51
|
+
|
|
52
|
+
## Install
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
pip install PyGithub
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Simple Demo
|
|
59
|
+
|
|
60
|
+
```python
|
|
61
|
+
from github import Github
|
|
62
|
+
|
|
63
|
+
# Authentication is defined via github.Auth
|
|
64
|
+
from github import Auth
|
|
65
|
+
|
|
66
|
+
# using an access token
|
|
67
|
+
auth = Auth.Token("access_token")
|
|
68
|
+
|
|
69
|
+
# First create a Github instance:
|
|
70
|
+
|
|
71
|
+
# Public Web Github
|
|
72
|
+
g = Github(auth=auth)
|
|
73
|
+
|
|
74
|
+
# Github Enterprise with custom hostname
|
|
75
|
+
g = Github(base_url="https://{hostname}/api/v3", auth=auth)
|
|
76
|
+
|
|
77
|
+
# Then play with your Github objects:
|
|
78
|
+
for repo in g.get_user().get_repos():
|
|
79
|
+
print(repo.name)
|
|
80
|
+
|
|
81
|
+
# To close connections after use
|
|
82
|
+
g.close()
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
## Documentation
|
|
86
|
+
|
|
87
|
+
More information can be found on the [PyGitHub documentation site.](https://pygithub.readthedocs.io/en/stable/introduction.html)
|
|
88
|
+
|
|
89
|
+
## Development
|
|
90
|
+
|
|
91
|
+
### Contributing
|
|
92
|
+
|
|
93
|
+
Long-term discussion and bug reports are maintained via GitHub Issues.
|
|
94
|
+
Code review is done via GitHub Pull Requests.
|
|
95
|
+
|
|
96
|
+
For more information read [CONTRIBUTING.md].
|
|
97
|
+
|
|
98
|
+
[CONTRIBUTING.md]: https://github.com/PyGithub/PyGithub/blob/main/CONTRIBUTING.md
|
|
99
|
+
|
|
100
|
+
### Maintainership
|
|
101
|
+
|
|
102
|
+
We're actively seeking maintainers that will triage issues and pull requests and cut releases.
|
|
103
|
+
If you work on a project that leverages PyGitHub and have a vested interest in keeping the code alive and well, send an email to someone in the MAINTAINERS file.
|