PyGithub 2.9.0__tar.gz → 2.10.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.10.0/.claude/skills/openapi/SKILL.md +275 -0
- pygithub-2.10.0/.claude/skills/sorted-classes/SKILL.md +18 -0
- pygithub-2.10.0/.github/actions/mypy/action.yml +22 -0
- pygithub-2.10.0/.github/actions/pre-commit/action.yml +24 -0
- pygithub-2.10.0/.github/actions/sort-classes/action.yml +25 -0
- pygithub-2.10.0/.github/workflows/_build-pkg.yml +32 -0
- pygithub-2.10.0/.github/workflows/auto-fix.yml +60 -0
- pygithub-2.10.0/.github/workflows/ci.yml +321 -0
- pygithub-2.10.0/.github/workflows/codeql.yml +100 -0
- pygithub-2.10.0/.github/workflows/lint.yml +34 -0
- pygithub-2.10.0/.github/workflows/openapi.yml +161 -0
- pygithub-2.10.0/.github/workflows/pypi-release.yml +31 -0
- pygithub-2.10.0/.github/workflows/test-results.yml +33 -0
- pygithub-2.10.0/.pre-commit-config.yaml +48 -0
- pygithub-2.10.0/ARCHITECTURE.md +674 -0
- pygithub-2.10.0/OPENAPI.md +539 -0
- pygithub-2.10.0/PKG-INFO +104 -0
- pygithub-2.10.0/PyGithub.egg-info/PKG-INFO +104 -0
- pygithub-2.10.0/PyGithub.egg-info/SOURCES.txt +1509 -0
- pygithub-2.10.0/PyGithub.egg-info/scm_file_list.json +1506 -0
- pygithub-2.10.0/PyGithub.egg-info/scm_version.json +8 -0
- pygithub-2.10.0/doc/changes.rst +2277 -0
- pygithub-2.10.0/doc/conf.py +398 -0
- pygithub-2.10.0/doc/examples/Exceptions.rst +59 -0
- pygithub-2.10.0/doc/examples/Repository.rst +300 -0
- pygithub-2.10.0/doc/examples.rst +16 -0
- pygithub-2.10.0/doc/introduction.rst +109 -0
- pygithub-2.10.0/github/AdvisoryBase.py +162 -0
- pygithub-2.10.0/github/AdvisoryCredit.py +131 -0
- pygithub-2.10.0/github/AdvisoryCreditDetailed.py +109 -0
- pygithub-2.10.0/github/ApplicationOAuth.py +199 -0
- pygithub-2.10.0/github/Auth.py +556 -0
- pygithub-2.10.0/github/AuthenticatedUser.py +1228 -0
- pygithub-2.10.0/github/CheckRun.py +315 -0
- pygithub-2.10.0/github/CodeScanAlert.py +212 -0
- pygithub-2.10.0/github/CodeScanRule.py +133 -0
- pygithub-2.10.0/github/CommitCombinedStatus.py +123 -0
- pygithub-2.10.0/github/Comparison.py +216 -0
- pygithub-2.10.0/github/Consts.py +194 -0
- pygithub-2.10.0/github/CopilotSeat.py +129 -0
- pygithub-2.10.0/github/DefaultCodeSecurityConfig.py +92 -0
- pygithub-2.10.0/github/DependabotAlertDependency.py +92 -0
- pygithub-2.10.0/github/Deployment.py +313 -0
- pygithub-2.10.0/github/DiscussionBase.py +139 -0
- pygithub-2.10.0/github/DiscussionCommentBase.py +139 -0
- pygithub-2.10.0/github/Download.py +255 -0
- pygithub-2.10.0/github/EnterpriseConsumedLicenses.py +137 -0
- pygithub-2.10.0/github/EnvironmentProtectionRuleReviewer.py +104 -0
- pygithub-2.10.0/github/Event.py +133 -0
- pygithub-2.10.0/github/Gist.py +356 -0
- pygithub-2.10.0/github/GistComment.py +161 -0
- pygithub-2.10.0/github/GistHistoryState.py +240 -0
- pygithub-2.10.0/github/GitRelease.py +467 -0
- pygithub-2.10.0/github/GitReleaseAsset.py +231 -0
- pygithub-2.10.0/github/GithubException.py +225 -0
- pygithub-2.10.0/github/GithubIntegration.py +351 -0
- pygithub-2.10.0/github/GithubObject.py +851 -0
- pygithub-2.10.0/github/GithubRetry.py +259 -0
- pygithub-2.10.0/github/Hook.py +237 -0
- pygithub-2.10.0/github/Installation.py +293 -0
- pygithub-2.10.0/github/Issue.py +934 -0
- pygithub-2.10.0/github/IssueComment.py +305 -0
- pygithub-2.10.0/github/MainClass.py +1118 -0
- pygithub-2.10.0/github/Migration.py +280 -0
- pygithub-2.10.0/github/Milestone.py +254 -0
- pygithub-2.10.0/github/Notification.py +181 -0
- pygithub-2.10.0/github/Organization.py +2416 -0
- pygithub-2.10.0/github/OrganizationCodeScanAlert.py +64 -0
- pygithub-2.10.0/github/OrganizationDependabotAlert.py +63 -0
- pygithub-2.10.0/github/OrganizationSecret.py +188 -0
- pygithub-2.10.0/github/OrganizationSecretScanAlert.py +64 -0
- pygithub-2.10.0/github/OrganizationVariable.py +138 -0
- pygithub-2.10.0/github/PaginatedList.py +528 -0
- pygithub-2.10.0/github/Project.py +284 -0
- pygithub-2.10.0/github/ProjectCard.py +258 -0
- pygithub-2.10.0/github/ProjectColumn.py +226 -0
- pygithub-2.10.0/github/PullRequest.py +1170 -0
- pygithub-2.10.0/github/PullRequestComment.py +392 -0
- pygithub-2.10.0/github/PullRequestReview.py +197 -0
- pygithub-2.10.0/github/RateLimit.py +184 -0
- pygithub-2.10.0/github/Reaction.py +128 -0
- pygithub-2.10.0/github/RepoCodeSecurityConfig.py +93 -0
- pygithub-2.10.0/github/Repository.py +5001 -0
- pygithub-2.10.0/github/RepositoryAdvisory.py +428 -0
- pygithub-2.10.0/github/Requester.py +1448 -0
- pygithub-2.10.0/github/RequiredPullRequestReviews.py +269 -0
- pygithub-2.10.0/github/SecretScanAlert.py +257 -0
- pygithub-2.10.0/github/SecretScanAlertInstance.py +127 -0
- pygithub-2.10.0/github/SecurityAndAnalysis.py +186 -0
- pygithub-2.10.0/github/SecurityAndAnalysisFeature.py +82 -0
- pygithub-2.10.0/github/SelfHostedActionsRunnerJitConfig.py +73 -0
- pygithub-2.10.0/github/Team.py +587 -0
- pygithub-2.10.0/github/TeamDiscussion.py +136 -0
- pygithub-2.10.0/github/TimelineEvent.py +163 -0
- pygithub-2.10.0/github/Workflow.py +330 -0
- pygithub-2.10.0/github/WorkflowJob.py +252 -0
- pygithub-2.10.0/github/WorkflowRun.py +478 -0
- pygithub-2.10.0/github/WorkflowStep.py +117 -0
- pygithub-2.10.0/github/__init__.py +115 -0
- pygithub-2.10.0/github/openapi.index.json +34 -0
- pygithub-2.10.0/openapi/Cli.py +175 -0
- pygithub-2.10.0/openapi/__init__.py +22 -0
- pygithub-2.10.0/openapi/cli-sequence/.gitignore +26 -0
- pygithub-2.10.0/openapi/cli-sequence/0000-init/commands +4 -0
- pygithub-2.10.0/openapi/cli-sequence/0000-init/expected/stdout +9 -0
- pygithub-2.10.0/openapi/cli-sequence/0010-create-class-user/commands +3 -0
- pygithub-2.10.0/openapi/cli-sequence/0010-create-class-user/expected/run.diff +1105 -0
- pygithub-2.10.0/openapi/cli-sequence/0010-create-class-user/expected/stdout +477 -0
- pygithub-2.10.0/openapi/cli-sequence/0011-create-class-user-search-result/commands +3 -0
- pygithub-2.10.0/openapi/cli-sequence/0011-create-class-user-search-result/expected/run.diff +213 -0
- pygithub-2.10.0/openapi/cli-sequence/0011-create-class-user-search-result/expected/stdout +139 -0
- pygithub-2.10.0/openapi/cli-sequence/0020-create-class-issue-comment/commands +3 -0
- pygithub-2.10.0/openapi/cli-sequence/0020-create-class-issue-comment/expected/run.diff +495 -0
- pygithub-2.10.0/openapi/cli-sequence/0020-create-class-issue-comment/expected/stdout +252 -0
- pygithub-2.10.0/openapi/cli-sequence/0030-fix-issue-comment-user-type/IssueComment.py.patch +43 -0
- pygithub-2.10.0/openapi/cli-sequence/0030-fix-issue-comment-user-type/commands +2 -0
- pygithub-2.10.0/openapi/cli-sequence/0030-fix-issue-comment-user-type/expected/run.diff +56 -0
- pygithub-2.10.0/openapi/cli-sequence/0030-fix-issue-comment-user-type/expected/stdout +8 -0
- pygithub-2.10.0/openapi/cli-sequence/0031-suggest-and-add-schemas/commands +4 -0
- pygithub-2.10.0/openapi/cli-sequence/0031-suggest-and-add-schemas/expected/run.diff +378 -0
- pygithub-2.10.0/openapi/cli-sequence/0031-suggest-and-add-schemas/expected/stdout +59 -0
- pygithub-2.10.0/openapi/cli-sequence/0032-apply-properties/commands +3 -0
- pygithub-2.10.0/openapi/cli-sequence/0032-apply-properties/expected/run.diff +69 -0
- pygithub-2.10.0/openapi/cli-sequence/0032-apply-properties/expected/stdout +109 -0
- pygithub-2.10.0/openapi/cli-sequence/0040-suggest-paths-for-issue-comment/commands +2 -0
- pygithub-2.10.0/openapi/cli-sequence/0040-suggest-paths-for-issue-comment/expected/run.diff +0 -0
- pygithub-2.10.0/openapi/cli-sequence/0040-suggest-paths-for-issue-comment/expected/stdout +29 -0
- pygithub-2.10.0/openapi/cli-sequence/0041-create-method-issue-comment-get-reactions/commands +3 -0
- pygithub-2.10.0/openapi/cli-sequence/0041-create-method-issue-comment-get-reactions/expected/run.diff +412 -0
- pygithub-2.10.0/openapi/cli-sequence/0041-create-method-issue-comment-get-reactions/expected/stdout +62 -0
- pygithub-2.10.0/openapi/cli-sequence/0042-create-method-issue-comment-create-reaction/commands +3 -0
- pygithub-2.10.0/openapi/cli-sequence/0042-create-method-issue-comment-create-reaction/expected/run.diff +87 -0
- pygithub-2.10.0/openapi/cli-sequence/0042-create-method-issue-comment-create-reaction/expected/stdout +44 -0
- pygithub-2.10.0/openapi/cli-sequence/0050-create-method-named-user-get-starred/commands +3 -0
- pygithub-2.10.0/openapi/cli-sequence/0050-create-method-named-user-get-starred/expected/run.diff +102 -0
- pygithub-2.10.0/openapi/cli-sequence/0050-create-method-named-user-get-starred/expected/stdout +42 -0
- pygithub-2.10.0/openapi/cli-sequence/0051-create-class-repository/commands +2 -0
- pygithub-2.10.0/openapi/cli-sequence/0051-create-class-repository/expected/run.diff +2606 -0
- pygithub-2.10.0/openapi/cli-sequence/0051-create-class-repository/expected/stdout +20 -0
- pygithub-2.10.0/openapi/cli-sequence/0052-apply-methods-rewrite-named-user-get-starred/commands +4 -0
- pygithub-2.10.0/openapi/cli-sequence/0052-apply-methods-rewrite-named-user-get-starred/expected/run.diff +0 -0
- pygithub-2.10.0/openapi/cli-sequence/0052-apply-methods-rewrite-named-user-get-starred/expected/stdout +26 -0
- pygithub-2.10.0/openapi/cli-sequence/0060-add-simple-user-schema/NamedUser.py.patch +10 -0
- pygithub-2.10.0/openapi/cli-sequence/0060-add-simple-user-schema/commands +2 -0
- pygithub-2.10.0/openapi/cli-sequence/0060-add-simple-user-schema/expected/run.diff +291 -0
- pygithub-2.10.0/openapi/cli-sequence/0060-add-simple-user-schema/expected/stdout +8 -0
- pygithub-2.10.0/openapi/cli-sequence/0061-apply-properties/commands +3 -0
- pygithub-2.10.0/openapi/cli-sequence/0061-apply-properties/expected/run.diff +78 -0
- pygithub-2.10.0/openapi/cli-sequence/0061-apply-properties/expected/stdout +146 -0
- pygithub-2.10.0/openapi/cli-sequence/0070-patch-named-user/NamedUser.py.patch +69 -0
- pygithub-2.10.0/openapi/cli-sequence/0070-patch-named-user/commands +2 -0
- pygithub-2.10.0/openapi/cli-sequence/0070-patch-named-user/expected/run.diff +190 -0
- pygithub-2.10.0/openapi/cli-sequence/0070-patch-named-user/expected/stdout +8 -0
- pygithub-2.10.0/openapi/cli-sequence/0071-apply-methods-rewrite-named-user/commands +4 -0
- pygithub-2.10.0/openapi/cli-sequence/0071-apply-methods-rewrite-named-user/expected/run.diff +125 -0
- pygithub-2.10.0/openapi/cli-sequence/0071-apply-methods-rewrite-named-user/expected/stdout +132 -0
- pygithub-2.10.0/openapi/cli-sequence/0072-add-schema-to-repository/Repository.py.patch +11 -0
- pygithub-2.10.0/openapi/cli-sequence/0072-add-schema-to-repository/commands +2 -0
- pygithub-2.10.0/openapi/cli-sequence/0072-add-schema-to-repository/expected/run.diff +1752 -0
- pygithub-2.10.0/openapi/cli-sequence/0072-add-schema-to-repository/expected/stdout +8 -0
- pygithub-2.10.0/openapi/cli-sequence/0073-apply-methods-rewrite-named-user/commands +4 -0
- pygithub-2.10.0/openapi/cli-sequence/0073-apply-methods-rewrite-named-user/expected/run.diff +78 -0
- pygithub-2.10.0/openapi/cli-sequence/0073-apply-methods-rewrite-named-user/expected/stdout +69 -0
- pygithub-2.10.0/openapi/cli-sequence/0074-apply-properties/commands +3 -0
- pygithub-2.10.0/openapi/cli-sequence/0074-apply-properties/expected/run.diff +313 -0
- pygithub-2.10.0/openapi/cli-sequence/0074-apply-properties/expected/stdout +381 -0
- pygithub-2.10.0/openapi/cli-sequence/0080-create-class-git-author/commands +3 -0
- pygithub-2.10.0/openapi/cli-sequence/0080-create-class-git-author/expected/run.diff +328 -0
- pygithub-2.10.0/openapi/cli-sequence/0080-create-class-git-author/expected/stdout +171 -0
- pygithub-2.10.0/openapi/cli-sequence/0081-create-class-git-commit/commands +3 -0
- pygithub-2.10.0/openapi/cli-sequence/0081-create-class-git-commit/expected/run.diff +534 -0
- pygithub-2.10.0/openapi/cli-sequence/0081-create-class-git-commit/expected/stdout +207 -0
- pygithub-2.10.0/openapi/cli-sequence/0082-create-class-commit/commands +9 -0
- pygithub-2.10.0/openapi/cli-sequence/0082-create-class-commit/expected/run.diff +638 -0
- pygithub-2.10.0/openapi/cli-sequence/0082-create-class-commit/expected/stdout +320 -0
- pygithub-2.10.0/openapi/cli-sequence/0083-commit-apply-properties-new-schemas-as-dict/commands +3 -0
- pygithub-2.10.0/openapi/cli-sequence/0083-commit-apply-properties-new-schemas-as-dict/expected/run.diff +217 -0
- pygithub-2.10.0/openapi/cli-sequence/0083-commit-apply-properties-new-schemas-as-dict/expected/stdout +158 -0
- pygithub-2.10.0/openapi/cli-sequence/0084-create-class-commit-search-result/commands +5 -0
- pygithub-2.10.0/openapi/cli-sequence/0084-create-class-commit-search-result/expected/run.diff +542 -0
- pygithub-2.10.0/openapi/cli-sequence/0084-create-class-commit-search-result/expected/stdout +165 -0
- pygithub-2.10.0/openapi/conftest.py +35 -0
- pygithub-2.10.0/pyproject.toml +106 -0
- pygithub-2.10.0/requirements/docs.txt +4 -0
- pygithub-2.10.0/requirements/test.txt +7 -0
- pygithub-2.10.0/scripts/openapi-update-classes.sh +283 -0
- pygithub-2.10.0/scripts/openapi.py +4913 -0
- pygithub-2.10.0/scripts/prepare-for-update-assertions.py +155 -0
- pygithub-2.10.0/scripts/sort_class.py +275 -0
- pygithub-2.10.0/tests/ApplicationOAuth.py +241 -0
- pygithub-2.10.0/tests/BadAttributes.py +310 -0
- pygithub-2.10.0/tests/Branch.py +345 -0
- pygithub-2.10.0/tests/CodeScanAlert.py +164 -0
- pygithub-2.10.0/tests/CommitCombinedStatus.py +94 -0
- pygithub-2.10.0/tests/Download.py +85 -0
- pygithub-2.10.0/tests/Exceptions.py +174 -0
- pygithub-2.10.0/tests/Framework.py +635 -0
- pygithub-2.10.0/tests/GitCommitVerification.py +57 -0
- pygithub-2.10.0/tests/GitRef.py +105 -0
- pygithub-2.10.0/tests/GitRelease.py +320 -0
- pygithub-2.10.0/tests/GitReleaseAsset.py +112 -0
- pygithub-2.10.0/tests/GithubIntegration.py +363 -0
- pygithub-2.10.0/tests/GithubObject.py +840 -0
- pygithub-2.10.0/tests/GithubRetry.py +446 -0
- pygithub-2.10.0/tests/Installation.py +141 -0
- pygithub-2.10.0/tests/Issue214.py +77 -0
- pygithub-2.10.0/tests/Issue494.py +52 -0
- pygithub-2.10.0/tests/IssueDependencies.py +47 -0
- pygithub-2.10.0/tests/Organization.py +927 -0
- pygithub-2.10.0/tests/OrganizationCodeScanAlert.py +106 -0
- pygithub-2.10.0/tests/OrganizationDependabotAlert.py +111 -0
- pygithub-2.10.0/tests/OrganizationSecretScanAlert.py +120 -0
- pygithub-2.10.0/tests/PaginatedList.py +695 -0
- pygithub-2.10.0/tests/Pickle.py +93 -0
- pygithub-2.10.0/tests/PullRequest.py +680 -0
- pygithub-2.10.0/tests/PullRequest1169.py +50 -0
- pygithub-2.10.0/tests/PullRequestReview.py +111 -0
- pygithub-2.10.0/tests/PullRequestReview1856.py +38 -0
- pygithub-2.10.0/tests/Reaction.py +67 -0
- pygithub-2.10.0/tests/ReleaseAsset.py +141 -0
- pygithub-2.10.0/tests/ReplayData/ApplicationOAuth.testEnterpriseGetAccessToken.txt +10 -0
- pygithub-2.10.0/tests/ReplayData/ApplicationOAuth.testGetAccessToken.txt +10 -0
- pygithub-2.10.0/tests/ReplayData/ApplicationOAuth.testGetAccessTokenBadCode.txt +10 -0
- pygithub-2.10.0/tests/ReplayData/ApplicationOAuth.testGetAccessTokenUnknownError.txt +10 -0
- pygithub-2.10.0/tests/ReplayData/ApplicationOAuth.testGetAccessTokenWithExpiry.txt +10 -0
- pygithub-2.10.0/tests/ReplayData/ApplicationOAuth.testRefreshAccessToken.txt +21 -0
- pygithub-2.10.0/tests/ReplayData/GitRef.testExample.txt +76 -0
- pygithub-2.10.0/tests/ReplayData/GitRelease.testGetLazyLatestRelease.txt +10 -0
- pygithub-2.10.0/tests/ReplayData/GitRelease.testGetLazyReleaseByTag.txt +21 -0
- pygithub-2.10.0/tests/ReplayData/GitRelease.testGetReleaseByTag.txt +32 -0
- pygithub-2.10.0/tests/ReplayData/Github.testGetGlobalAdvisoriesManyFilters.txt +32 -0
- pygithub-2.10.0/tests/ReplayData/GithubIntegration.testGetGithubForInstallation.txt +21 -0
- pygithub-2.10.0/tests/ReplayData/Installation.testGetGithubForInstallation.txt +32 -0
- pygithub-2.10.0/tests/ReplayData/IssueDependencies.setUp.txt +21 -0
- pygithub-2.10.0/tests/ReplayData/IssueDependencies.testAddBlockedBy.txt +32 -0
- pygithub-2.10.0/tests/ReplayData/IssueDependencies.testRemoveBlockedBy.txt +32 -0
- pygithub-2.10.0/tests/ReplayData/Organization.testCreateCustomProperty.txt +10 -0
- pygithub-2.10.0/tests/ReplayData/Organization.testCreateVariableUrl.txt +10 -0
- pygithub-2.10.0/tests/ReplayData/Organization.testEditSecret.txt +31 -0
- pygithub-2.10.0/tests/ReplayData/Organization.testEditSecretSelected.txt +53 -0
- pygithub-2.10.0/tests/ReplayData/Organization.testEditVariable.txt +20 -0
- pygithub-2.10.0/tests/ReplayData/OrganizationSecretScanAlert.testGetAlertsWithAllArguments.txt +10 -0
- pygithub-2.10.0/tests/ReplayData/PaginatedList.testSearchWithCompleteResults.txt +109 -0
- pygithub-2.10.0/tests/ReplayData/PaginatedList.testSearchWithIncompleteResults.txt +98 -0
- pygithub-2.10.0/tests/ReplayData/PaginatedList.testTotalCountWithLastPageAndPageFirst.txt +10 -0
- pygithub-2.10.0/tests/ReplayData/PullRequest1168.testGetIssue.txt +21 -0
- pygithub-2.10.0/tests/ReplayData/PullRequest1168.testGetPullRequest.txt +21 -0
- pygithub-2.10.0/tests/ReplayData/Repository.testCreatePullWithHeadRepo.txt +10 -0
- pygithub-2.10.0/tests/ReplayData/Repository.testGetWorkflowJob.txt +21 -0
- pygithub-2.10.0/tests/ReplayData/Requester.testApiVersion.txt +43 -0
- pygithub-2.10.0/tests/ReplayData/SecretScanAlert.testGetAlertsWithAllArguments.txt +10 -0
- pygithub-2.10.0/tests/ReplayData/SecurityAndAnalysis.setUp.txt +10 -0
- pygithub-2.10.0/tests/ReplayData/Workflow.testCreateDispatchWithReturnRunDetails.txt +32 -0
- pygithub-2.10.0/tests/ReplayData/WorkflowRun.testGetAttempt.txt +32 -0
- pygithub-2.10.0/tests/Repository.py +2515 -0
- pygithub-2.10.0/tests/Requester.py +754 -0
- pygithub-2.10.0/tests/RequiredPullRequestReviews.py +120 -0
- pygithub-2.10.0/tests/RequiredStatusChecks.py +69 -0
- pygithub-2.10.0/tests/SecretScanAlert.py +139 -0
- pygithub-2.10.0/tests/SecurityAndAnalysis.py +90 -0
- pygithub-2.10.0/tests/SubIssue.py +79 -0
- pygithub-2.10.0/tests/Workflow.py +193 -0
- pygithub-2.10.0/tests/WorkflowRun.py +210 -0
- pygithub-2.10.0/tox.ini +39 -0
- pygithub-2.9.0/.github/actions/mypy/action.yml +0 -22
- pygithub-2.9.0/.github/actions/pre-commit/action.yml +0 -24
- pygithub-2.9.0/.github/actions/sort-classes/action.yml +0 -25
- pygithub-2.9.0/.github/workflows/_build-pkg.yml +0 -32
- pygithub-2.9.0/.github/workflows/auto-fix.yml +0 -60
- pygithub-2.9.0/.github/workflows/ci.yml +0 -297
- pygithub-2.9.0/.github/workflows/codeql.yml +0 -100
- pygithub-2.9.0/.github/workflows/lint.yml +0 -34
- pygithub-2.9.0/.github/workflows/openapi.yml +0 -161
- pygithub-2.9.0/.github/workflows/pypi-release.yml +0 -31
- pygithub-2.9.0/.github/workflows/test-results.yml +0 -33
- pygithub-2.9.0/.pre-commit-config.yaml +0 -47
- pygithub-2.9.0/PKG-INFO +0 -103
- pygithub-2.9.0/PyGithub.egg-info/PKG-INFO +0 -103
- pygithub-2.9.0/PyGithub.egg-info/SOURCES.txt +0 -1400
- pygithub-2.9.0/doc/changes.rst +0 -2201
- pygithub-2.9.0/doc/conf.py +0 -397
- pygithub-2.9.0/doc/examples/Repository.rst +0 -268
- pygithub-2.9.0/doc/examples.rst +0 -15
- pygithub-2.9.0/doc/introduction.rst +0 -106
- pygithub-2.9.0/github/AdvisoryBase.py +0 -157
- pygithub-2.9.0/github/AdvisoryCredit.py +0 -127
- pygithub-2.9.0/github/AdvisoryCreditDetailed.py +0 -105
- pygithub-2.9.0/github/ApplicationOAuth.py +0 -198
- pygithub-2.9.0/github/Auth.py +0 -554
- pygithub-2.9.0/github/AuthenticatedUser.py +0 -1226
- pygithub-2.9.0/github/CheckRun.py +0 -314
- pygithub-2.9.0/github/CodeScanAlert.py +0 -211
- pygithub-2.9.0/github/CodeScanRule.py +0 -132
- pygithub-2.9.0/github/CommitCombinedStatus.py +0 -118
- pygithub-2.9.0/github/Comparison.py +0 -215
- pygithub-2.9.0/github/Consts.py +0 -187
- pygithub-2.9.0/github/CopilotSeat.py +0 -126
- pygithub-2.9.0/github/DefaultCodeSecurityConfig.py +0 -88
- pygithub-2.9.0/github/DependabotAlertDependency.py +0 -88
- pygithub-2.9.0/github/Deployment.py +0 -311
- pygithub-2.9.0/github/DiscussionBase.py +0 -135
- pygithub-2.9.0/github/DiscussionCommentBase.py +0 -135
- pygithub-2.9.0/github/Download.py +0 -254
- pygithub-2.9.0/github/EnterpriseConsumedLicenses.py +0 -134
- pygithub-2.9.0/github/EnvironmentProtectionRuleReviewer.py +0 -103
- pygithub-2.9.0/github/Event.py +0 -127
- pygithub-2.9.0/github/Gist.py +0 -353
- pygithub-2.9.0/github/GistComment.py +0 -157
- pygithub-2.9.0/github/GistHistoryState.py +0 -233
- pygithub-2.9.0/github/GitRelease.py +0 -460
- pygithub-2.9.0/github/GitReleaseAsset.py +0 -219
- pygithub-2.9.0/github/GithubException.py +0 -194
- pygithub-2.9.0/github/GithubIntegration.py +0 -344
- pygithub-2.9.0/github/GithubObject.py +0 -745
- pygithub-2.9.0/github/GithubRetry.py +0 -234
- pygithub-2.9.0/github/Hook.py +0 -233
- pygithub-2.9.0/github/Installation.py +0 -291
- pygithub-2.9.0/github/Issue.py +0 -886
- pygithub-2.9.0/github/IssueComment.py +0 -304
- pygithub-2.9.0/github/MainClass.py +0 -1053
- pygithub-2.9.0/github/Migration.py +0 -279
- pygithub-2.9.0/github/Milestone.py +0 -249
- pygithub-2.9.0/github/Notification.py +0 -174
- pygithub-2.9.0/github/Organization.py +0 -2407
- pygithub-2.9.0/github/OrganizationCodeScanAlert.py +0 -60
- pygithub-2.9.0/github/OrganizationDependabotAlert.py +0 -59
- pygithub-2.9.0/github/OrganizationSecret.py +0 -155
- pygithub-2.9.0/github/OrganizationSecretScanAlert.py +0 -60
- pygithub-2.9.0/github/OrganizationVariable.py +0 -150
- pygithub-2.9.0/github/PaginatedList.py +0 -494
- pygithub-2.9.0/github/Project.py +0 -282
- pygithub-2.9.0/github/ProjectCard.py +0 -245
- pygithub-2.9.0/github/ProjectColumn.py +0 -222
- pygithub-2.9.0/github/PullRequest.py +0 -1168
- pygithub-2.9.0/github/PullRequestComment.py +0 -387
- pygithub-2.9.0/github/PullRequestReview.py +0 -193
- pygithub-2.9.0/github/RateLimit.py +0 -183
- pygithub-2.9.0/github/Reaction.py +0 -127
- pygithub-2.9.0/github/RepoCodeSecurityConfig.py +0 -91
- pygithub-2.9.0/github/Repository.py +0 -4978
- pygithub-2.9.0/github/RepositoryAdvisory.py +0 -427
- pygithub-2.9.0/github/Requester.py +0 -1424
- pygithub-2.9.0/github/RequiredPullRequestReviews.py +0 -268
- pygithub-2.9.0/github/SecretScanAlert.py +0 -256
- pygithub-2.9.0/github/SecretScanAlertInstance.py +0 -126
- pygithub-2.9.0/github/SecurityAndAnalysis.py +0 -142
- pygithub-2.9.0/github/SecurityAndAnalysisFeature.py +0 -73
- pygithub-2.9.0/github/SelfHostedActionsRunnerJitConfig.py +0 -69
- pygithub-2.9.0/github/Team.py +0 -586
- pygithub-2.9.0/github/TeamDiscussion.py +0 -135
- pygithub-2.9.0/github/TimelineEvent.py +0 -158
- pygithub-2.9.0/github/Workflow.py +0 -273
- pygithub-2.9.0/github/WorkflowJob.py +0 -243
- pygithub-2.9.0/github/WorkflowRun.py +0 -466
- pygithub-2.9.0/github/WorkflowStep.py +0 -112
- pygithub-2.9.0/github/__init__.py +0 -112
- pygithub-2.9.0/github/openapi.index.json +0 -33
- pygithub-2.9.0/pyproject.toml +0 -105
- pygithub-2.9.0/requirements/docs.txt +0 -3
- pygithub-2.9.0/requirements/test.txt +0 -5
- pygithub-2.9.0/scripts/openapi-update-classes.sh +0 -283
- pygithub-2.9.0/scripts/openapi.py +0 -3308
- pygithub-2.9.0/scripts/prepare-for-update-assertions.py +0 -155
- pygithub-2.9.0/scripts/sort_class.py +0 -270
- pygithub-2.9.0/tests/ApplicationOAuth.py +0 -240
- pygithub-2.9.0/tests/BadAttributes.py +0 -307
- pygithub-2.9.0/tests/Branch.py +0 -344
- pygithub-2.9.0/tests/CodeScanAlert.py +0 -163
- pygithub-2.9.0/tests/CommitCombinedStatus.py +0 -91
- pygithub-2.9.0/tests/Download.py +0 -84
- pygithub-2.9.0/tests/Exceptions.py +0 -169
- pygithub-2.9.0/tests/Framework.py +0 -634
- pygithub-2.9.0/tests/GitCommitVerification.py +0 -55
- pygithub-2.9.0/tests/GitRef.py +0 -80
- pygithub-2.9.0/tests/GitRelease.py +0 -304
- pygithub-2.9.0/tests/GitReleaseAsset.py +0 -111
- pygithub-2.9.0/tests/GithubIntegration.py +0 -361
- pygithub-2.9.0/tests/GithubObject.py +0 -839
- pygithub-2.9.0/tests/GithubRetry.py +0 -408
- pygithub-2.9.0/tests/Installation.py +0 -139
- pygithub-2.9.0/tests/Issue214.py +0 -76
- pygithub-2.9.0/tests/Issue494.py +0 -50
- pygithub-2.9.0/tests/Organization.py +0 -884
- pygithub-2.9.0/tests/OrganizationCodeScanAlert.py +0 -105
- pygithub-2.9.0/tests/OrganizationDependabotAlert.py +0 -110
- pygithub-2.9.0/tests/OrganizationSecretScanAlert.py +0 -119
- pygithub-2.9.0/tests/PaginatedList.py +0 -592
- pygithub-2.9.0/tests/Pickle.py +0 -92
- pygithub-2.9.0/tests/PullRequest.py +0 -679
- pygithub-2.9.0/tests/PullRequest1169.py +0 -49
- pygithub-2.9.0/tests/PullRequestReview.py +0 -109
- pygithub-2.9.0/tests/PullRequestReview1856.py +0 -36
- pygithub-2.9.0/tests/Reaction.py +0 -66
- pygithub-2.9.0/tests/ReleaseAsset.py +0 -140
- pygithub-2.9.0/tests/ReplayData/ApplicationOAuth.testEnterpriseGetAccessToken.txt +0 -10
- pygithub-2.9.0/tests/ReplayData/ApplicationOAuth.testGetAccessToken.txt +0 -10
- pygithub-2.9.0/tests/ReplayData/ApplicationOAuth.testGetAccessTokenBadCode.txt +0 -10
- pygithub-2.9.0/tests/ReplayData/ApplicationOAuth.testGetAccessTokenUnknownError.txt +0 -10
- pygithub-2.9.0/tests/ReplayData/ApplicationOAuth.testGetAccessTokenWithExpiry.txt +0 -10
- pygithub-2.9.0/tests/ReplayData/ApplicationOAuth.testRefreshAccessToken.txt +0 -21
- pygithub-2.9.0/tests/ReplayData/Github.testGetGlobalAdvisoriesManyFilters.txt +0 -32
- pygithub-2.9.0/tests/ReplayData/GithubIntegration.testGetGithubForInstallation.txt +0 -21
- pygithub-2.9.0/tests/ReplayData/Installation.testGetGithubForInstallation.txt +0 -32
- pygithub-2.9.0/tests/ReplayData/Organization.testCreateCustomProperty.txt +0 -10
- pygithub-2.9.0/tests/ReplayData/OrganizationSecretScanAlert.testGetAlertsWithAllArguments.txt +0 -10
- pygithub-2.9.0/tests/ReplayData/PullRequest1168.testGetIssue.txt +0 -21
- pygithub-2.9.0/tests/ReplayData/PullRequest1168.testGetPullRequest.txt +0 -21
- pygithub-2.9.0/tests/ReplayData/SecretScanAlert.testGetAlertsWithAllArguments.txt +0 -10
- pygithub-2.9.0/tests/ReplayData/SecurityAndAnalysis.setUp.txt +0 -10
- pygithub-2.9.0/tests/Repository.py +0 -2495
- pygithub-2.9.0/tests/Requester.py +0 -658
- pygithub-2.9.0/tests/RequiredPullRequestReviews.py +0 -118
- pygithub-2.9.0/tests/RequiredStatusChecks.py +0 -68
- pygithub-2.9.0/tests/SecretScanAlert.py +0 -138
- pygithub-2.9.0/tests/SecurityAndAnalysis.py +0 -70
- pygithub-2.9.0/tests/SubIssue.py +0 -78
- pygithub-2.9.0/tests/Workflow.py +0 -181
- pygithub-2.9.0/tests/WorkflowRun.py +0 -202
- pygithub-2.9.0/tox.ini +0 -39
- {pygithub-2.9.0 → pygithub-2.10.0}/.git-blame-ignore-revs +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/.github/FUNDING.yml +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/.github/dependabot.yml +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/.github/release.yml +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/.github/workflows/top-issues.yaml +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/.gitignore +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/.readthedocs.yml +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/CONTRIBUTING.md +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/COPYING +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/COPYING.LESSER +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/DEPLOY.md +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/MAINTAINERS +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/PyGithub.egg-info/dependency_links.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/PyGithub.egg-info/requires.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/PyGithub.egg-info/top_level.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/README.md +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/codecov.yml +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/.gitignore +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/Design.md +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/development.rst +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/examples/Authentication.rst +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/examples/Branch.rst +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/examples/Commit.rst +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/examples/Issue.rst +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/examples/LazyMode.rst +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/examples/MainClass.rst +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/examples/Milestone.rst +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/examples/PullRequest.rst +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/examples/Webhook.rst +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/getting-started.rst +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/github.rst +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/github_integration.rst +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/github_objects/.gitignore +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/graphql.rst +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/index.rst +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/openapi.rst +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/reference.rst +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/scripts.rst +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/testing.rst +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/doc/utilities.rst +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/AccessToken.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/AdvisoryVulnerability.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/AdvisoryVulnerabilityPackage.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/AppAuthentication.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Artifact.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Authorization.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/AuthorizationApplication.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Autolink.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Branch.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/BranchProtection.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/CVSS.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/CWE.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/CheckRunAnnotation.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/CheckRunOutput.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/CheckSuite.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Clones.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/CodeScanAlertInstance.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/CodeScanAlertInstanceLocation.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/CodeScanTool.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/CodeSecurityConfig.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/CodeSecurityConfigRepository.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Commit.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/CommitComment.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/CommitStats.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/CommitStatus.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/ContentFile.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Copilot.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/DependabotAlert.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/DependabotAlertAdvisory.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/DependabotAlertVulnerability.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/DeploymentStatus.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Enterprise.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Environment.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/EnvironmentDeploymentBranchPolicy.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/EnvironmentProtectionRule.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/File.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/GeneratedReleaseNotes.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/GistFile.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/GitAuthor.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/GitBlob.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/GitCommit.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/GitCommitVerification.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/GitObject.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/GitRef.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/GitTag.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/GitTree.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/GitTreeElement.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/GithubApp.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/GitignoreTemplate.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/GlobalAdvisory.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/HookDelivery.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/HookDescription.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/HookResponse.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/InputFileContent.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/InputGitAuthor.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/InputGitTreeElement.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/InstallationAuthorization.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Invitation.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/IssueDependenciesSummary.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/IssueEvent.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/IssuePullRequest.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/IssueType.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Label.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/License.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Membership.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/MergedUpstream.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/NamedEnterpriseUser.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/NamedUser.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/NotificationSubject.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/OrganizationCustomProperty.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Path.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Permissions.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Plan.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/PublicKey.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/PullRequestMergeStatus.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/PullRequestPart.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Rate.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/RateLimitOverview.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Referrer.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/RepositoryDiscussion.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/RepositoryDiscussionCategory.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/RepositoryDiscussionComment.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/RepositoryKey.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/RepositoryPreferences.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/RequiredStatusChecks.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Secret.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/SelfHostedActionsRunner.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/SelfHostedActionsRunnerApplication.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/SelfHostedActionsRunnerToken.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/SourceImport.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Stargazer.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/StatsCodeFrequency.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/StatsCommitActivity.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/StatsContributor.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/StatsParticipation.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/StatsPunchCard.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/SubIssueSummary.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Tag.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/TimelineEventSource.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Topic.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Traffic.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/UserKey.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/Variable.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/View.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/github/py.typed +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/requirements/scripts.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/requirements/types.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/scripts/fix_headers.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/scripts/get-openapi-path.sh +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/scripts/get-openapi-schema.sh +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/scripts/prepare_release.sh +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/scripts/update-assertions.sh +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/setup.cfg +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Artifact.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/AuthenticatedUser.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Authentication.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Authorization.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Autolink.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/BranchProtection.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/CheckRun.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/CheckSuite.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Commit.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/CommitComment.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/CommitStatus.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ConditionalRequestUpdate.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Connection.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ContentFile.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Copilot.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/DependabotAlert.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Deployment.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/DeploymentStatus.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Enterprise.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/EnterpriseAdmin.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Environment.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Equality.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Event.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ExposeAllAttributes.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Gist.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/GistComment.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/GitBlob.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/GitCommit.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/GitTag.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/GitTree.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/GithubApp.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Github_.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/GlobalAdvisory.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/GraphQl.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Hook.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Issue.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Issue131.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Issue133.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Issue134.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Issue139.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Issue140.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Issue142.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Issue174.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Issue2030.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Issue216.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Issue278.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Issue33.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Issue50.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Issue54.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Issue572.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Issue80.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Issue823.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Issue87.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Issue937.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Issue945.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/IssueComment.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/IssueDependenciesSummary.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/IssueEvent.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/IssueType.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Label.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/License.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Logging_.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Markdown.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Membership.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Migration.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Milestone.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/NamedUser.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/NamedUser1430.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Notification.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Organization1437.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/OrganizationHasInMembers.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Permissions.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Persistence.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/PoolSize.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Project.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Project1434.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ProjectCard.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ProjectColumn.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/PublicKey.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/PullRequest1168.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/PullRequest1375.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/PullRequest1682.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/PullRequest1684.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/PullRequest2408.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/PullRequestComment.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/PullRequestFile.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/RateLimitOverview.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/RateLimiting.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/RawData.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ApplicationOAuth.testRefreshAccessTokenBadCode.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ApplicationOAuth.testRefreshAccessTokenUnknownError.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Artifact.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Artifact.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Artifact.testGetArtifactsFromRepo.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Artifact.testGetArtifactsFromRepoWithName.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Artifact.testGetArtifactsFromWorkflow.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Artifact.testGetArtifactsFromWorkflowWithName.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Artifact.testGetNonexistentArtifact.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Artifact.testGetSingleArtifactFromRepo.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testAcceptInvitation.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testCreateAuthorizationWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testCreateAuthorizationWithClientIdAndSecret.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testCreateAuthorizationWithoutArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testCreateFork.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testCreateGist.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testCreateGistWithoutDescription.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testCreateKey.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testCreateMigration.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testCreateProject.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testCreateRepoFromTemplate.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testCreateRepoFromTemplateWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testCreateRepository.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testCreateRepositoryWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testCreateRepositoryWithAutoInit.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testEditWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testEditWithoutArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testEmails.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testFollowing.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testGetAuthorizations.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testGetEvents.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testGetGists.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testGetInvitations.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testGetIssues.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testGetIssuesWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testGetKeys.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testGetMemberships.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testGetMigrations.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testGetNotification.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testGetNotifications.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testGetNotificationsWithOtherArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testGetOrganizationEvents.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testGetOrgs.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testGetRepos.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testGetReposWithArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testGetStarredGists.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testGetTeams.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testGetUserIssues.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testGetUserIssuesWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testInstallations.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testMarkNotificationsAsRead.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testStarring.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testSubscriptions.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/AuthenticatedUser.testWatching.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Authentication.testAppAuthAuthentication.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Authentication.testAppAuthTokenAuthentication.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Authentication.testAppAuthentication.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Authentication.testAppInstallationAuthAuthentication.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Authentication.testAppUserAuthentication.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Authentication.testAuthorizationHeaderWithLogin.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Authentication.testAuthorizationHeaderWithToken.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Authentication.testBasicAuthentication.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Authentication.testJWTAuthentication.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Authentication.testLoginAuthentication.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Authentication.testNoAuthentication.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Authentication.testOAuthAuthentication.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Authentication.testTokenAuthentication.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Authentication.testUserAgent.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Authorization.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Authorization.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Authorization.testEdit.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Autolink.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/BadAttributes.testBadAttributeInClassAttribute.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/BadAttributes.testBadAttributeTransformation.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/BadAttributes.testBadSimpleAttribute.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/BadAttributes.testBadSimpleAttributeInList.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/BadAttributes.testBadTransformedAttribute.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/BadAttributes.testBadTransformedAttributeInDict.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/BadAttributes.testBadTransformedAttributeInList.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/BadAttributes.testIssue195.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testAddRequiredSignatures.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testAddTeamPushRestrictions.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testAddUserPushRestrictions.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testAdminEnforcement.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testAllowDeletions.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testCommitCommentsOnLine.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testEditProtection.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testEditProtectionDismissalUsersWithUserOwnedBranch.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testEditProtectionPushRestrictionsAndDismissalUser.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testEditProtectionPushRestrictionsWithUserOwnedBranch.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testEditRequiredPullRequestReviews.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testEditRequiredPullRequestReviewsWithTooLargeApprovingReviewCount.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testEditRequiredPullRequestReviewsWithUserBranchAndDismissalUsers.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testEditRequiredStatusChecks.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testEditRequiredStatusChecksChecks.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testEditRequiredStatusChecksContexts.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testGetRequiredSignatures.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testProtectedAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testRemoveProtection.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testRemovePushRestrictions.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testRemoveRequiredPullRequestReviews.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testRemoveRequiredSignatures.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testRemoveRequiredStatusChecks.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testRemoveTeamPushRestrictions.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testRemoveUserPushRestrictions.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testReplaceTeamPushRestrictions.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Branch.testReplaceUserPushRestrictions.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/BranchProtection.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckRun.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckRun.testAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckRun.testCheckRunAnnotationAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckRun.testCheckRunOutputAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckRun.testCreateCheckRunCompleted.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckRun.testCreateCheckRunInProgress.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckRun.testGetCheckRunsForRef.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckRun.testGetCheckRunsForRefFilterByCheckName.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckRun.testGetCheckRunsForRefFilterByFilter.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckRun.testGetCheckRunsForRefFilterByStatus.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckRun.testListCheckRunAnnotations.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckRun.testUpdateCheckRunAll.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckRun.testUpdateCheckRunFailure.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckRun.testUpdateCheckRunSuccess.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckSuite.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckSuite.testCheckSuiteRerequest.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckSuite.testCreateCheckSuite.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckSuite.testGetCheckRuns.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckSuite.testGetCheckRunsFilterByCheckName.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckSuite.testGetCheckRunsFilterByFilter.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckSuite.testGetCheckRunsFilterByStatus.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckSuite.testGetCheckSuitesForRef.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckSuite.testGetCheckSuitesForRefFilterByAppId.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckSuite.testGetCheckSuitesForRefFilterByCheckName.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CheckSuite.testUpdateCheckSuitesPreferences.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CodeScanAlert.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CodeScanAlert.testAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CodeScanAlert.testGetAlertsWithArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CodeScanAlert.testMultipleAlerts.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CodeScanAlert.testRepr.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Commit.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Commit.testAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Commit.testCreateComment.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Commit.testCreateCommentOnFileLine.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Commit.testCreateCommentOnFilePosition.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Commit.testCreateStatusWithAllParameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Commit.testCreateStatusWithoutOptionalParameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Commit.testGetBranchesWhereHead.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Commit.testGetComments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Commit.testGetPulls.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CommitCombinedStatus.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CommitComment.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CommitComment.testCreateReaction.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CommitComment.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CommitComment.testDeleteReaction.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CommitComment.testEdit.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CommitComment.testGetReactions.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CommitStatus.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testPullCommitsFiles.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testPullCommitsFilesDefault.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testPullCommitsGetFiles.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testPullCommitsGetFilesDefault.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testPullCommitsGetFilesWithPerPage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoCommitFiles.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoCommitFilesDefault.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoCommitFilesWithPerPage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoCommitGetFiles.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoCommitGetFilesDefault.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoCommitGetFilesWithPerPage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoCommitsFiles.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoComparisonCommitsFiles.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoComparisonCommitsFilesDefault.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoComparisonCommitsFilesReversed.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoComparisonCommitsFilesReversedWithPerPage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoComparisonCommitsFilesWithPerPage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ConditionalRequestUpdate.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ConditionalRequestUpdate.testDidNotUpdate.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ConditionalRequestUpdate.testDidUpdate.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ConditionalRequestUpdate.testUpdateObjectWithoutEtag.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ContentFile.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Copilot.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Copilot.testAddSeats.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Copilot.testAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Copilot.testGetSeats.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Copilot.testRemoveSeats.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/DependabotAlert.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/DependabotAlert.testAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/DependabotAlert.testGetAlertsWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/DependabotAlert.testMultipleAlerts.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/DependabotAlert.testRepr.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/DependabotAlert.testUpdateAlertDismissed.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/DependabotAlert.testUpdateAlertOpen.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Deployment.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/DeploymentStatus.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/DeploymentStatus.testCreate.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/DeploymentStatus.testGetStatuses.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Download.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Download.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Enterprise.testHttp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Enterprise.testHttps.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Enterprise.testLongUrl.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Enterprise.testSpecificPort.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/EnterpriseAdmin.testGetConsumedLicenses.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/EnterpriseAdmin.testGetEnterpriseGetUsers.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/EnterpriseAdmin.testGetEnterpriseUsers.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Environment.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Environment.testCreateEnvironment.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Environment.testDeleteEnvironment.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Environment.testEnvironmentSecret.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Environment.testEnvironmentSecrets.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Environment.testEnvironmentVariable.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Environment.testEnvironmentVariables.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Environment.testGetEnvironments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Environment.testReviewers.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Environment.testUpdateEnvironment.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Equality.testBranchEquality.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Equality.testUserDifference.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Equality.testUserEquality.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Event.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Exceptions.testBadAuthentication.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Exceptions.testInvalidInput.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Exceptions.testJSONParseError.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Exceptions.testNonJsonDataReturnedByGithub.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Exceptions.testUnknownObject.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Exceptions.testUnknownUser.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ExposeAllAttributes.testAllClasses.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Gist.testAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Gist.testCreateComment.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Gist.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Gist.testDeleteFile.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Gist.testEditWithAllParameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Gist.testEditWithoutParameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Gist.testFork.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Gist.testGetComments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Gist.testRenameFile.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Gist.testStarring.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GistComment.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GistComment.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GistComment.testEdit.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitBlob.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitCommit.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitCommitVerification.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitRef.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitRef.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitRef.testEdit.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitRef.testEditWithForce.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitRelease.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitRelease.testCreateGitTagAndRelease.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitRelease.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitRelease.testGetAssets.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitRelease.testGetLatestRelease.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitRelease.testGetRelease.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitRelease.testUpdate.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitRelease.testUploadAsset.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitRelease.testUploadAssetFileLike.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitRelease.testUploadAssetFromMemory.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitRelease.testUploadAssetWithName.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitReleaseAsset.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitReleaseAsset.testDownloadAssetFile.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitReleaseAsset.testDownloadAssetStream.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitTag.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GitTree.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetEmojis.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetEvents.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetGists.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetGistsWithSince.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetGitignoreTemplate.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetGitignoreTemplates.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetGlobalAdvisories.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetGlobalAdvisoriesByCVE.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetGlobalAdvisoriesByGHSA.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetHook.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetHookDeliveries.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetHookDelivery.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetHooks.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetLicense.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetLicenses.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetOrganizations.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetOrganizationsSince.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetRepoFromFullName.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetRepoFromId.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetRepos.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetReposSince.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetRepositoryDiscussion.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetUserById.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetUsers.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testGetUsersSince.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testSearchRepos.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testSearchUserByEmail.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Github.testSearchUsers.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GithubApp.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GithubApp.testGetAuthenticatedApp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GithubIntegration.testAppAuth.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GithubIntegration.testDeprecatedAppAuth.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GithubIntegration.testGetAccessToken.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GithubIntegration.testGetAccessTokenForNoInstallation.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GithubIntegration.testGetAccessTokenWithExpiredJWT.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GithubIntegration.testGetAccessTokenWithInvalidData.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GithubIntegration.testGetAccessTokenWithInvalidPermissions.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GithubIntegration.testGetApp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GithubIntegration.testGetAppInstallation.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GithubIntegration.testGetInstallationNotFound.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GithubIntegration.testGetInstallationWithExpiredJWT.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GithubIntegration.testGetInstallations.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GithubIntegration.testGetOrgInstallation.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GithubIntegration.testGetRepoInstallation.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GithubIntegration.testGetUserInstallation.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GlobalAdvisory.testAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GlobalAdvisory.testNewlyReleased.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GraphQl.testDefaultUrl.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GraphQl.testMutation.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GraphQl.testMutationClass.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GraphQl.testNode.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GraphQl.testNodeClass.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GraphQl.testOtherPort.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GraphQl.testOtherUrl.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GraphQl.testPaginationAndRestIntegration.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GraphQl.testQuery.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GraphQl.testQueryGraphQlClass.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/GraphQl.testQueryRestClass.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Hook.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Hook.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Hook.testEditWithAllParameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Hook.testEditWithMinimalParameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Hook.testPing.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Hook.testTest.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Installation.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Installation.testGetRepos.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testAddAndRemoveAssignees.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testAddAndRemoveLabels.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testAddAndRemoveLabelsWithStringArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testCreateComment.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testCreateReaction.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testDeleteAndSetLabels.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testDeleteAndSetLabelsWithStringArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testDeleteReaction.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testEditResetAssignees.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testEditResetMilestone.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testEditWithAllParameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testEditWithStateReasonNotPlanned.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testEditWithStateReasonReopened.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testEditWithoutParameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testGetComments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testGetCommentsSince.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testGetEvents.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testGetLabels.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testGetReactions.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testGetTimeline.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testLock.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue.testUnlock.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue131.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue131.testGetPullWithOrgHeadUser.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue131.testGetPullsWithOrgHeadUser.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue133.testGetPageWithoutInitialArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue134.testGetAuthorizationsFailsWhenAutenticatedThroughOAuth.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue134.testGetAuthorizationsSucceedsWhenAutenticatedThroughLoginPassword.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue134.testGetOAuthScopesFromHeader.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue139.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue139.testCompletion.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue140.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue140.testGetDirContents.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue140.testGetDirContentsThenLazyCompletionOfFile.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue140.testGetDirContentsWithRef.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue140.testGetFileContents.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue142.testDecodeJson.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue174.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue174.testGetDirContentsWithHttpRedirect.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue214.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue214.testAssignees.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue214.testCollaborators.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue214.testCreateIssue.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue214.testEditIssue.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue214.testGetIssues.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue216.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue216.testIteration.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue278.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue278.testIteration.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue33.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue33.testClosedIssues.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue33.testOpenIssues.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue494.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue50.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue50.testAddLabelToIssue.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue50.testCreateIssueWithLabel.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue50.testCreateLabel.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue50.testGetIssuesWithLabel.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue50.testGetLabel.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue50.testGetLabels.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue50.testIssueGetLabels.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue50.testRemoveLabelFromIssue.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue50.testSetIssueLabels.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue54.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue54.testConversion.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue572.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue572.testIssueAsPullRequest.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue572.testPullReqeustAsIssue.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue80.testIgnoreHttpsFromGithubEnterprise.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue80.testIgnoreHttpsFromGithubEnterpriseWithPort.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue823.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue823.testGetPendingInvitationAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue87.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue87.testCreateIssueWithEscapedPercentInBody.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue87.testCreateIssueWithEscapedPercentInTitle.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue87.testCreateIssueWithPercentInBody.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue87.testCreateIssueWithPercentInTitle.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue937.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue937.testCollaboratorsAffiliation.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue945.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Issue945.testReservedPaginatedListAttributePreservation.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/IssueComment.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/IssueComment.testCreateReaction.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/IssueComment.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/IssueComment.testDeleteReaction.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/IssueComment.testEdit.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/IssueComment.testGetReactions.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/IssueComment.testMinimize.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/IssueComment.testUnminimize.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/IssueEvent.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Label.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Label.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Label.testEdit.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/LazyRepository.testChangeAutomateFixWhenNoVulnerabilityAlert.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/LazyRepository.testDisableAutomatedSecurityFixes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/LazyRepository.testDisableVulnerabilityAlert.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/LazyRepository.testEnableAutomatedSecurityFixes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/LazyRepository.testEnableVulnerabilityAlert.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/LazyRepository.testGetIssues.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/LazyRepository.testGetUser.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/LazyRepository.testGetVulnerabilityAlert.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/LazyRepository.testGetVulnerabilityAlertWhenTurnedOff.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/LazyRepository.testOwner.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/License.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Logging.testLoggingWithBaseUrl.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Logging.testLoggingWithBasicAuthentication.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Logging.testLoggingWithOAuthAuthentication.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Logging.testLoggingWithoutAuthentication.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Markdown.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Markdown.testRenderGithubFlavoredMarkdown.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Markdown.testRenderMarkdown.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Membership.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Migration.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Migration.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Migration.testGetArchiveUrlWhenDeleted.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Migration.testGetArchiveUrlWhenExported.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Migration.testGetArchiveUrlWhenNotExported.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Migration.testGetStatus.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Migration.testUnlockRepo.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Milestone.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Milestone.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Milestone.testEditWithAllParameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Milestone.testEditWithMinimalParameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Milestone.testGetLabels.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.testAttributesOfOtherUser.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.testGetEvents.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.testGetFollowers.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.testGetFollowing.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.testGetGists.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.testGetKeys.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.testGetOrganizationMembership.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.testGetOrganizationMembershipNotMember.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.testGetOrgs.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.testGetPublicEvents.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.testGetPublicReceivedEvents.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.testGetReceivedEvents.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.testGetRepo.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.testGetRepos.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.testGetReposWithAllArgs.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.testGetStarred.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.testGetSubscriptions.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.testGetWatched.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.testHasInFollowing.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser.testUserEquality.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser1430.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/NamedUser1430.testGetProjects.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Notification.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Notification.testMarkAsDone.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Notification.testMarkAsRead.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testAddMembersAdminRole.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testAddMembersDefaultRole.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testAttachDetachSecurityConfig.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testCreateActionsSecret.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testCreateCodeSecurityConfigs.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testCreateCustomProperties.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testCreateCustomPropertyValues.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testCreateDependabotSecret.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testCreateDependabotSecretSelected.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testCreateFork.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testCreateHookWithAllParameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testCreateHookWithMinimalParameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testCreateMigration.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testCreateRepoFromTemplate.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testCreateRepoFromTemplateWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testCreateRepoWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testCreateRepoWithMinimalArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testCreateRepositoryWithAutoInit.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testCreateSecretSelected.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testCreateTeam.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testCreateTeamWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testCreateVariable.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testCreateVariableSelected.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testDeleteHook.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testDeleteSelfHostedRunner.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testEditHookWithAllParameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testEditHookWithMinimalParameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testEditWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testEditWithoutArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetCodeSecurityConfig.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetCodeSecurityConfigs.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetCustomProperties.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetCustomProperty.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetDependabotAlerts.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetDependabotAlertsWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetDependabotSecrets.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetEvents.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetHook.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetHookDeliveries.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetHookDelivery.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetHooks.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetInstallations.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetIssues.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetIssuesWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetMembers.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetMigrations.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetOutsideCollaborators.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetPublicMembers.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetRepos.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetReposForCodeSecurityConfig.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetReposSorted.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetReposWithType.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetSecret.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetSecrets.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetSelfHostedRunnerApplications.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetSelfHostedRunners.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetTeamBySlug.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetTeams.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetVariable.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testGetVariables.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testInviteUserAsNonOwner.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testInviteUserByEmail.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testInviteUserByName.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testInviteUserWithBoth.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testInviteUserWithRoleAndTeam.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testIssue2030CreateProject.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testListCustomPropertyValues.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testMembers.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testOrgGetSecretAssertion.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testOrgSecretEdit.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testOrgVariable.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testOutsideCollaborators.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testPublicMembers.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testRemoveCustomProperty.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testSelfHostedRunnerGetRegistrationToken.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testSelfHostedRunnerGetRemoveToken.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testSelfHostedRunnerJitConfig.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization.testSetDefaultCodeSecurityConfig.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization1437.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Organization1437.testCreateProject.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/OrganizationCodeScanAlert.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/OrganizationCodeScanAlert.testGetAlertsWithArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/OrganizationCodeScanAlert.testMultipleAlerts.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/OrganizationCodeScanAlert.testRepr.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/OrganizationDependabotAlert.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/OrganizationDependabotAlert.testGetAlertsWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/OrganizationDependabotAlert.testMultipleAlerts.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/OrganizationDependabotAlert.testRepr.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/OrganizationHasInMembers.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/OrganizationInvitation.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/OrganizationInvitation.testCancel.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/OrganizationSecretScanAlert.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/OrganizationSecretScanAlert.testMultipleAlerts.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/OrganizationSecretScanAlert.testRepr.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testCustomPerPage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testCustomPerPageIteration.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testCustomPerPageReversedIteration.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testCustomPerPageReversedIterationSinglePage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testCustomPerPageWithGetPage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testCustomPerPageWithNoUrlParams.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testGetFirstPage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testGetThirdPage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testGettingTheReversedListDoesNotModifyTheOriginalList.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testGraphQlPagination.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testIntIndexingInThirdPage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testInterruptedIteration.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testIteration.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testIterationWithPrefetchedFirstPage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testNoFirstPage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testReversedIterationWithMultiplePages.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testReversedIterationWithSinglePage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testReversedWithFirstPage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testReversedWithFirstSinglePage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testSliceIndexingUntilFourthPage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testTotalCountWithDeprecationLink.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testTotalCountWithDictionary.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testTotalCountWithNoLastPage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testWithFirstPage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PaginatedList.testWithFirstSinglePage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Permissions.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Persistence.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Persistence.testLoadAndUpdate.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Pickle.testPickleRepository.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PoolSize.testReturnsRepoAfterSettingPoolSize.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PoolSize.testReturnsRepoAfterSettingPoolSizeHttp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Project.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Project.testGetOrganizationProjects.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Project.testGetRepositoryProjects.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Project1434.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Project1434.testEditWithAllParameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Project1434.testEditWithoutParameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectCard.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectCard.testCreateFromIssue.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectCard.testCreateWithNote.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectCard.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectCard.testEditArchived.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectCard.testEditNote.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectCard.testEditWithoutParameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectCard.testGetAll.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectCard.testGetContent.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectCard.testMove.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectColumn.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectColumn.testCreate.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectColumn.testCreateCard.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectColumn.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectColumn.testEdit.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectColumn.testGetAllCards.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectColumn.testGetArchivedCards.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectColumn.testGetCards.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectColumn.testGetNotArchivedCards.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectColumn.testGetProjectColumn.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectColumn.testMoveAfter.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectColumn.testMoveFirst.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ProjectColumn.testMoveLast.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PublicKey.testAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PublicKey.testAttributes_with_int_key_id.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PublicReleaseAsset.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PublicReleaseAsset.testAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PublicReleaseAsset.testDownload.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testAddAndRemoveAssignees.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testAddAndRemoveLabels.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testAddAndRemoveLabelsWithStringArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testConvertToDraft.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testCreateComment.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testCreateIssueComment.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testCreateMultilineReviewComment.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testCreateMultilineReviewCommentAsSuggestion.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testCreateMultilineReviewCommentChoosingSide.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testCreateReviewCommentInReplyTo.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testCreateReviewCommentSubjectType.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testDeleteAndSetLabels.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testDeleteAndSetLabelsWithStringArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testDeleteBranch.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testDeleteOnMerge.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testDisableAutomerge.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testEditWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testEditWithoutArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testEnableAutomerge.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testEnableAutomergeDefaultValues.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testEnableAutomergeError.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testForceDeleteBranch.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testGetComments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testGetCommits.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testGetFiles.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testGetIssueComment.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testGetIssueComments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testGetIssueEvents.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testGetIssueTimeline.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testGetLabels.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testGetReviewComments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testMarkReadyForReview.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testMerge.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testMergeWithCommitMessage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testRestoreBranch.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testReviewRequests.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest.testUpdateBranch.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest1168.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest1169.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest1169.testReviewApproveWithoutBody.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest1375.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest1375.testCreateReviewCommentReply.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest1682.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest1682.test_no_parameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest1682.test_object_parameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest1682.test_string_parameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest1684.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest1684.testDeleteRunnerId.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest1684.testDeleteRunnerObject.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest1684.testGetRunners.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest2408.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequest2408.test_get_workflow_runs.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequestComment.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequestComment.testCreateReaction.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequestComment.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequestComment.testDeleteReaction.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequestComment.testEdit.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequestComment.testGetReactions.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequestFile.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequestReview.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequestReview.testAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequestReview.testDismiss.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequestReview.testDoesNotModifyPullRequest.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequestReview.testEdit.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/PullRequestReview1856.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RateLimitOverview.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RateLimiting.testGetRateLimit.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RateLimiting.testRateLimiting.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RateLimiting.testResetTime.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RawData.testCompletedObject.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RawData.testNonCompletableObject.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RawData.testNotYetCompletedObject.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Reaction.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Reaction.testAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Reaction.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ReleaseAsset.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ReleaseAsset.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ReleaseAsset.testUpdate.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ReleaseModify.testCreateGitTagAndRelease.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ReleaseModify.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ReleaseModify.testUpdate.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ReleaseModify.testUploadAsset.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ReleaseModify.testUploadAssetFileLike.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ReleaseModify.testUploadAssetFromMemory.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ReleaseModify.testUploadAssetWithName.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ReleaseRead.testAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ReleaseRead.testGetAssets.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ReleaseRead.testGetLatestRelease.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/ReleaseRead.testGetRelease.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testAddToCollaboratorsCustomRole.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testAssignees.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testBadSubscribePubSubHubbub.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCodeScanAlerts.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCollaboratorPermission.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCollaboratorPermissionNoPushAccess.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCollaboratorRoleName.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCollaborators.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCompare.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCompareCommitPagination.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCompareCommitsPerPage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateAutolink.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateDeployment.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateFile.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateFork.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateForkOrg.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateGitBlob.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateGitCommit.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateGitCommitWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateGitCommitWithParents.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateGitRef.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateGitRelease.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateGitReleaseGenerateReleaseNotes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateGitReleaseWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateGitTag.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateGitTagWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateGitTree.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateGitTreeWithBaseTree.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateGitTreeWithNullSha.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateGitTreeWithSha.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateHookWithAllParameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateHookWithMinimalParameters.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateIssue.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateIssueWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateIssueWithAllArgumentsStringLabel.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateKey.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateLabel.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateMilestone.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateMilestoneWithMinimalArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateProject.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreatePull.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreatePullFromIssue.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateRepoActionsSecret.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateRepoDependabotSecret.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateRepositoryDispatch.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testCreateSourceImport.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testDeleteFile.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testDeleteSecret.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testEditWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testEditWithDefaultBranch.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testEditWithoutArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGenerateReleaseNotes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGenerateReleaseNotesWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetArchiveLink.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetAutolinks.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetAutomatedSecurityFixes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetBranch.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetComments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetCommits.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetCommitsWithArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetCommitsWithAuthor.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetCommitsWithSinceUntil.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetContents.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetContentsDir.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetContentsDirWithSlash.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetContentsWithRef.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetContributors.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetCustomProperties.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetDeployments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetDiscussion.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetDiscussions.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetDiscussionsByAnswered.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetDiscussionsByCategory.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetDiscussionsByStates.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetDownloads.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetEvents.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetForks.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetGitRef.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetGitRefWithIssue102Reverted.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetGitRefs.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetGitTreeWithRecursive.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetHookDeliveries.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetHookDelivery.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetHooks.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetIssues.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetIssuesComments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetIssuesEvents.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetIssuesWithArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetIssuesWithTypeArgument.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetIssuesWithTypeWildcard.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetIssuesWithWildcards.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetKeys.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetLabel.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetLabels.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetLanguages.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetLicense.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetMatchingRefs.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetMilestones.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetMilestonesWithArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetNetworkEvents.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetPendingInvitations.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetPulls.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetPullsComments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetPullsWithArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetRepositoryWith301Redirect.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetSourceImport.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetStargazers.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetStargazersWithDates.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetSubscribers.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetTeams.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetTopics.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetWatchers.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetWorkflowId.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetWorkflowRuns.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetWorkflowRunsCreated.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testGetWorkflows.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testLegacySearchIssues.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testMarkNotificationsAsRead.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testMergeUpstreamFailure.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testMergeUpstreamSuccess.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testMergeWithConflict.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testMergeWithMessage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testMergeWithNothingToDo.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testMergeWithoutMessage.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testRemoveAutolink.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testRemoveInvitation.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testRenameBranchObject.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testRenameBranchString.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testReplaceTopics.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testRepoGetSecretAssertion.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testRepoSecrets.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testRepoVariable.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testRepoVariables.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testSearchIssues.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testStatisticsCodeFrequency.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testStatisticsCommitActivity.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testStatisticsContributors.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testStatisticsParticipation.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testStatisticsPunchCard.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testSubscribePubSubHubbub.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testTransferOwnership.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testTransferOwnershipInvalidOwner.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testUnsubscribePubSubHubbub.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testUpdateCustomProperties.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Repository.testUpdateFile.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RepositoryAdvisory.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RepositoryAdvisory.testAddVulnerability.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RepositoryAdvisory.testCreateRepositoryAdvisory.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RepositoryAdvisory.testGetAdvisories.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RepositoryAdvisory.testOfferCredit.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RepositoryAdvisory.testOfferCredits.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RepositoryAdvisory.testRemoveCredit.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RepositoryAdvisory.testRepositoryWithNoAdvisories.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RepositoryAdvisory.testUpdateRepositoryAdvisory.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RepositoryAdvisory.testUpdateSingleFieldDoesNotRemoveOtherFields.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RepositoryDiscussion.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RepositoryDiscussion.testAddAndDeleteComment.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RepositoryDiscussion.testGetComments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RepositoryDiscussion.testGetCommentsWithoutNodeId.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RepositoryKey.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RepositoryKey.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Requester.testBaseUrlHostRedirection.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Requester.testBaseUrlPortRedirection.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Requester.testBaseUrlPrefixRedirection.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Requester.testBaseUrlSchemeRedirection.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Requester.testLoggingRedirection.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RequesterThrottleTestCase.testDeferRequests.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RequesterThrottled.testShouldDeferWrites.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RequiredPullRequestReviews.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RequiredPullRequestReviews.testOrganizationOwnedTeam.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/RequiredStatusChecks.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Retry.testRaisesRetryErrorAfterMaxRetries.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Retry.testReturnsRepoAfter1Retry.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Retry.testReturnsRepoAfter3Retries.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Retry.testReturnsRepoAfterSettingRetryHttp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Retry.testShouldNotRetryWhenStatusNotOnList.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Search.testGetPageOnSearchUsers.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Search.testPaginateSearchTopics.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Search.testPaginateSearchUsers.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Search.testSearchCode.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Search.testSearchCommits.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Search.testSearchCommitsOrder.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Search.testSearchHighlightingCode.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Search.testSearchIssues.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Search.testSearchRepos.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Search.testSearchReposWithNoResults.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Search.testSearchTopics.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Search.testSearchUsers.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Search.testUrlquotingOfQualifiers.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Search.testUrlquotingOfQuery.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/SecretScanAlert.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/SecretScanAlert.testAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/SecretScanAlert.testMultipleAlerts.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/SecretScanAlert.testRepr.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/SelfHostedActionsRunner.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/SelfHostedActionsRunner.testAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/SourceImport.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/SourceImport.testUpdate.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/SpecificExceptions.test2FARequired.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/SpecificExceptions.testAuthenticatedRateLimitExceeded.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/SpecificExceptions.testBadCredentials.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/SpecificExceptions.testBadUserAgent.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/SpecificExceptions.testRateLimitExceeded.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/SpecificExceptions.testUnknownObject.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/SubIssue.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/SubIssue.testAddSubIssue.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/SubIssue.testListSubIssues.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/SubIssue.testPrioritizeSubIssue.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/SubIssue.testRemoveSubIssue.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Tag.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Team.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Team.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Team.testDiscussions.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Team.testEditWithAllArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Team.testEditWithoutArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Team.testGetTeams.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Team.testMembers.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Team.testRepoPermission.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Team.testRepos.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Team.testTeamMembership.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Team.testUpdateTeamRepository.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Topic.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Traffic.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Traffic.testGetClones.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Traffic.testGetPaths.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Traffic.testGetReferrers.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Traffic.testGetViews.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/UserKey.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/UserKey.testDelete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Workflow.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Workflow.testCreateDispatchException.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Workflow.testCreateDispatchForNonTriggerEnabled.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Workflow.testCreateDispatchWithBranch.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Workflow.testCreateDispatchWithString.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Workflow.testCreateDispatchWithTag.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Workflow.testDisable.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Workflow.testDisabledWhenAlreadyDisabled.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Workflow.testEnable.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Workflow.testEnableWhenAlreadyEnabled.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Workflow.testGetRunsWithCreated.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Workflow.testGetRunsWithHeadSha.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Workflow.testGetRunsWithNoArguments.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Workflow.testGetRunsWithObjects.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/Workflow.testGetRunsWithStrings.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/WorkflowJob.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/WorkflowJob.testAttributes.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/WorkflowRun.setUp.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/WorkflowRun.test_cancel.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/WorkflowRun.test_delete.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/WorkflowRun.test_jobs.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/WorkflowRun.test_rerun.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/WorkflowRun.test_rerun_failed_jobs.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/WorkflowRun.test_rerun_with_successful_run.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/WorkflowRun.test_timing.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/ReplayData/WorkflowRun.test_timing_no_run_duration.txt +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/RepositoryAdvisory.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/RepositoryDiscussion.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/RepositoryKey.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Retry.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Search.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/SelfHostedActionsRunner.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/SourceImport.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/SubIssueSummary.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Tag.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Team.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Topic.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/Traffic.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/UserKey.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/WorkflowJob.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/__init__.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/conftest.py +0 -0
- {pygithub-2.9.0 → pygithub-2.10.0}/tests/test_release_notes.yml +0 -0
|
@@ -0,0 +1,275 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: OpenAPI
|
|
3
|
+
description: Script to create or modify PyGithub classes according to Github REST API OpenAPI specification.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# OpenAPI script
|
|
7
|
+
|
|
8
|
+
First read [OPENAPI.md](../../../OPENAPI.md).
|
|
9
|
+
|
|
10
|
+
The script lives at `scripts/openapi.py`. Invoke the script with `python3 scripts/openapi.py ...`
|
|
11
|
+
|
|
12
|
+
Generated code is not guaranteed to compile and work. It merely represents a suggestion and best practice.
|
|
13
|
+
|
|
14
|
+
## Contents
|
|
15
|
+
- Commands
|
|
16
|
+
- Notable files
|
|
17
|
+
|
|
18
|
+
## Commands
|
|
19
|
+
- help: provide help on using the script
|
|
20
|
+
- init: run before the first use of the OpenAPI Python script
|
|
21
|
+
- fetch: fetch an OpenAPI spec file
|
|
22
|
+
- index: index the OpenAPI spec file and PyGithub code base
|
|
23
|
+
- suggest: suggest paths or schemas
|
|
24
|
+
- apply: apply schema to class' properties (add/update attributes) or class' paths (add/update methods)
|
|
25
|
+
- create: create a new PyGithub class or method
|
|
26
|
+
|
|
27
|
+
Use option `--dry-run` to make a command read-only.
|
|
28
|
+
|
|
29
|
+
The index command creates a JSON file that is used by almost all other commands. Any change to PyGithub source code
|
|
30
|
+
requires to rerun (re-index) the index command and update the [OpenAPI index JSON file](#OpenAPI index JSON file). A index file is tightly
|
|
31
|
+
connected with the [OpenAPI spec JSON file](#OpenAPI spec JSON file) that was used in the index command. Using a different spect JSON file
|
|
32
|
+
requires a different index file.
|
|
33
|
+
|
|
34
|
+
Any code and test changes require fixing linting issues by running `pre-commit` and `mypy`.
|
|
35
|
+
|
|
36
|
+
Suggest updating this skill whenever interactions with the `openapi.py` script fail and
|
|
37
|
+
inspection of inner mechanics or invocation are needed. Add your findings to this skill
|
|
38
|
+
to avoid such inspections in the future.
|
|
39
|
+
|
|
40
|
+
### Invocation cheat sheet
|
|
41
|
+
|
|
42
|
+
Argument placement matters because of argparse:
|
|
43
|
+
- **Global flags** (`--dry-run`, `--verbose`, `--exit-code`) go **before** the command:
|
|
44
|
+
`openapi.py --dry-run apply ...`
|
|
45
|
+
- **command flags** (e.g. `--new-schemas`, `--tests`, `--add`) go **after** the command but **before** the positional arguments:
|
|
46
|
+
`openapi.py apply --new-schemas as-dict github/ <spec> <index> <Class>`
|
|
47
|
+
Placing a command flag after the trailing positional class names fails with `error: unrecognized arguments`.
|
|
48
|
+
|
|
49
|
+
### help
|
|
50
|
+
Provides input on how to use commands, shows full set of options.
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
openapi.py --help
|
|
54
|
+
openapi.py COMMAND --help
|
|
55
|
+
openapi.py COMMAND SUB-COMMAND --help
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
### init
|
|
59
|
+
If no [OpenAPI spec JSON file](#OpenAPI spec JSON file) and no [OpenAPI index JSON file](#OpenAPI index JSON file) exists,
|
|
60
|
+
run the following sequence of commands (generates those files):
|
|
61
|
+
- fetch
|
|
62
|
+
- index
|
|
63
|
+
|
|
64
|
+
### fetch
|
|
65
|
+
Fetches the [OpenAPI spec JSON file](#OpenAPI spec JSON file) from the github.com. It is good practice to
|
|
66
|
+
use the time of retrieval as part of the filename to never overwrite an existing local spec file.
|
|
67
|
+
Create a symbolic link from `api.github.com.YYYY-MM-DD.json` to the latest `api.github.com.YYYY-MM-DD.YYYYMMDDTHHMMSS.json`
|
|
68
|
+
to simplify subsequent reference of the latest spec file.
|
|
69
|
+
|
|
70
|
+
```
|
|
71
|
+
usage: openapi.py fetch [-h] [--commit [COMMIT]] api api_version spec
|
|
72
|
+
|
|
73
|
+
positional arguments:
|
|
74
|
+
api Github API, e.g. api.github.com, ghec, ghes-3.15. See https://github.com/github/rest-api-description/tree/main/descriptions
|
|
75
|
+
api_version Github API version date, e.g. 2022-11-28
|
|
76
|
+
spec Github API OpenAPI spec file to be written
|
|
77
|
+
|
|
78
|
+
options:
|
|
79
|
+
-h, --help show this help message and exit
|
|
80
|
+
--commit [COMMIT] Specific commit to fetch file from
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
### index
|
|
84
|
+
Index the spec file and PyGithub codebase and store information in the [OpenAPI index JSON file](#OpenAPI index JSON file).
|
|
85
|
+
```
|
|
86
|
+
usage: openapi.py index [-h] [--check-verbs] github_path [spec] index_filename
|
|
87
|
+
```
|
|
88
|
+
Overwrite an existing index file if needed without asking for approval.
|
|
89
|
+
|
|
90
|
+
### suggest
|
|
91
|
+
These sub-commands exist:
|
|
92
|
+
- suggest paths
|
|
93
|
+
- suggest schemas
|
|
94
|
+
|
|
95
|
+
Ask user what to suggest if the sub-command is not clear.
|
|
96
|
+
|
|
97
|
+
#### suggest paths
|
|
98
|
+
Suggests which paths a class should implement.
|
|
99
|
+
|
|
100
|
+
```
|
|
101
|
+
usage: openapi.py suggest paths [-h] spec index_filename [class_name ...]
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
Example output:
|
|
105
|
+
```
|
|
106
|
+
Class Artifact
|
|
107
|
+
- Implements schema /components/schemas/artifact
|
|
108
|
+
- Returned by path /repos/{owner}/{repo}/actions/artifacts/{artifact_id}
|
|
109
|
+
- get /repos/{owner}/{repo}/actions/artifacts/{artifact_id}/{archive_format} should be implemented as Artifact.download() or Artifact.get_download_link()
|
|
110
|
+
python scripts/openapi.py create method api.github.com.2022-11-28.json openapi.index Artifact download get /repos/{owner}/{repo}/actions/artifacts/{artifact_id}/{archive_format}
|
|
111
|
+
python scripts/openapi.py create method api.github.com.2022-11-28.json openapi.index Artifact get_download_link get /repos/{owner}/{repo}/actions/artifacts/{artifact_id}/{archive_format}
|
|
112
|
+
|
|
113
|
+
```
|
|
114
|
+
The output provides evidence for the suggestion ("Implements schema", "Returned by path"), the path and verb, suggested method name alternatives ("download", "get_download_link") and a list of openapi.py commands that would create those method alternatives.
|
|
115
|
+
|
|
116
|
+
This does not modify any files.
|
|
117
|
+
|
|
118
|
+
#### suggest schemas
|
|
119
|
+
Suggests which schemas a class should implement.
|
|
120
|
+
|
|
121
|
+
```
|
|
122
|
+
usage: openapi.py suggest schemas [-h] [--add] spec index_filename [class_name ...]
|
|
123
|
+
```
|
|
124
|
+
Example output:
|
|
125
|
+
```
|
|
126
|
+
Class Commit:
|
|
127
|
+
- should implement schema /components/schemas/commit
|
|
128
|
+
Methods returning the schema:
|
|
129
|
+
- PullRequest.get_commits
|
|
130
|
+
- Repository.get_commit
|
|
131
|
+
- Repository.merge
|
|
132
|
+
- Repository.get_commits
|
|
133
|
+
Paths returning the class:
|
|
134
|
+
- GET /repos/{owner}/{repo}/commits
|
|
135
|
+
- GET /repos/{owner}/{repo}/commits/{ref}
|
|
136
|
+
- GET /repos/{owner}/{repo}/pulls/{pull_number}/commits
|
|
137
|
+
- POST /repos/{owner}/{repo}/merges
|
|
138
|
+
```
|
|
139
|
+
The output provides evidence which methods return the schema / paths and vers return the class. Those paths have response schemas defined in the OpenAPI spect JSON file.
|
|
140
|
+
|
|
141
|
+
Option `--add` adds the schemas to the classes.
|
|
142
|
+
|
|
143
|
+
Only option `--add` modifies files, unless `--dry-run` is given.
|
|
144
|
+
|
|
145
|
+
### apply
|
|
146
|
+
These sub-commands exist:
|
|
147
|
+
- apply properties
|
|
148
|
+
- apply methods
|
|
149
|
+
|
|
150
|
+
Ask user what to suggest if the sub-command is not clear.
|
|
151
|
+
|
|
152
|
+
#### apply properties
|
|
153
|
+
Applies a schema to a class' source code: adds/updates the `_initAttributes`, `@property` accessors and
|
|
154
|
+
`_useAttributes` entries for every property of the schema(s) the class implements. The class' docstring
|
|
155
|
+
lists all OpenAPI schemas it implements.
|
|
156
|
+
|
|
157
|
+
```
|
|
158
|
+
usage: openapi.py apply properties [-h] [--tests] [--new-schemas {ignore,create-class,as-dict}] github_path spec index_filename [class_name ...]
|
|
159
|
+
|
|
160
|
+
positional arguments:
|
|
161
|
+
github_path Path to PyGithub Python files
|
|
162
|
+
spec Github API OpenAPI spec file
|
|
163
|
+
index_filename Path of index file
|
|
164
|
+
class_name PyGithub GithubObject class name
|
|
165
|
+
|
|
166
|
+
options:
|
|
167
|
+
-h, --help show this help message and exit
|
|
168
|
+
--tests Also apply spec to test files
|
|
169
|
+
--new-schemas {ignore,create-class,as-dict}
|
|
170
|
+
How to handle attributes that return schemas that are not implemented by any PyGithub: 'ignore', 'create-class' crates class implementation drafts, 'as-dict'
|
|
171
|
+
return dict[str, Any]). Option 'create-class' does not support --dry-run.
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
Flag `--new-schemas` controls attributes whose schema is not implemented by any PyGithub class:
|
|
175
|
+
- `ignore` (default): the attribute is skipped (logged as `Schema not implemented: ...`, only with `--verbose`).
|
|
176
|
+
- `as-dict`: the attribute becomes `dict[str, Any]` via `_makeDictAttribute`. Good for nested objects that
|
|
177
|
+
existing classes already model as a dict (check for precedent before inventing new classes).
|
|
178
|
+
- `create-class`: drafts new class files. Those classes may recursively create more new classes for other new schemas.
|
|
179
|
+
**Does not support `--dry-run`.**
|
|
180
|
+
|
|
181
|
+
Preview with `--dry-run` (prints a unified diff). Add `--verbose` to see which properties were skipped as not-implemented.
|
|
182
|
+
|
|
183
|
+
#### apply methods
|
|
184
|
+
Applies OpenAPI path schemas to existing methods: adds/updates method arguments, docstrings, assertions and web calls.
|
|
185
|
+
|
|
186
|
+
```
|
|
187
|
+
usage: openapi.py apply methods [-h] [--rewrite] spec index_filename [class_or_class_method_name ...]
|
|
188
|
+
|
|
189
|
+
positional arguments:
|
|
190
|
+
spec Github API OpenAPI spec file
|
|
191
|
+
index_filename Path of index file
|
|
192
|
+
class_or_class_method_name
|
|
193
|
+
PyGithub GithubObject class name (like 'Commit') or class method name (like 'Commit.edit')
|
|
194
|
+
|
|
195
|
+
options:
|
|
196
|
+
-h, --help show this help message and exit
|
|
197
|
+
--rewrite Applying schema to methods is free to rewrite existing code. No care is taken to preserve existing documentation or avoid breaking changes.
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
Flag `--rewrite` (`apply methods` specific) for allows the script to rewrite existing code. No care is taken to preserve existing documentation or avoid breaking changes.
|
|
201
|
+
Without `--rewrite`, no attributes are removed or breaking changes introduced.
|
|
202
|
+
|
|
203
|
+
### create
|
|
204
|
+
Creates a new PyGithub class or method.
|
|
205
|
+
|
|
206
|
+
These sub-commands:
|
|
207
|
+
- create class
|
|
208
|
+
- create method
|
|
209
|
+
|
|
210
|
+
#### create class
|
|
211
|
+
Create a new PyGithub class from an OpenAPI schema.
|
|
212
|
+
|
|
213
|
+
```
|
|
214
|
+
usage: openapi.py create class [-h] [--completable] [--parent PARENT] [--tests] [--new-schemas {ignore,create-class,as-dict}]
|
|
215
|
+
github_path spec index_filename class_name docs_url [schema ...]
|
|
216
|
+
|
|
217
|
+
positional arguments:
|
|
218
|
+
github_path Path to PyGithub Python files
|
|
219
|
+
spec Github API OpenAPI spec file
|
|
220
|
+
index_filename Path of index file
|
|
221
|
+
class_name PyGithub GithubObject class name
|
|
222
|
+
docs_url Github REST API documentation URL, for instance https://docs.github.com/en/rest/commits/commits#get-a-commit-object
|
|
223
|
+
schema Github API OpenAPI schema name
|
|
224
|
+
|
|
225
|
+
options:
|
|
226
|
+
-h, --help show this help message and exit
|
|
227
|
+
--completable New PyGithub class is completable, implies --parent CompletableGithubObject
|
|
228
|
+
--parent PARENT A parent PyGithub class
|
|
229
|
+
--tests Also create test file
|
|
230
|
+
--new-schemas {ignore,create-class,as-dict}
|
|
231
|
+
How to handle attributes that return schemas that are not implemented by any PyGithub: 'ignore', 'create-class' crates class implementation drafts, 'as-dict'
|
|
232
|
+
return dict[str, Any]). Option 'create-class' does not support --dry-run.
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
#### create method
|
|
236
|
+
Create a new method from an OpenAPI path.
|
|
237
|
+
|
|
238
|
+
```
|
|
239
|
+
usage: openapi.py create method [-h] [--new-schemas {ignore,create-class,as-dict}] [--return-property [RETURN_PROPERTY]]
|
|
240
|
+
github_path spec index_filename class_name method_name api_verb api_path [api_response]
|
|
241
|
+
|
|
242
|
+
positional arguments:
|
|
243
|
+
github_path Path to PyGithub Python files
|
|
244
|
+
spec Github API OpenAPI spec file
|
|
245
|
+
index_filename Path of index file
|
|
246
|
+
class_name PyGithub GithubObject class name
|
|
247
|
+
method_name PyGithub method name
|
|
248
|
+
api_verb OpenAPI verb
|
|
249
|
+
api_path OpenAPI path
|
|
250
|
+
api_response OpenAPI response, e.g. 200
|
|
251
|
+
|
|
252
|
+
options:
|
|
253
|
+
-h, --help show this help message and exit
|
|
254
|
+
--new-schemas {ignore,create-class,as-dict}
|
|
255
|
+
How to return schemas that are not implemented by any PyGithub: 'ignore', 'create-class' crates class implementation drafts, 'as-dict' return dict[str, Any]).
|
|
256
|
+
Option 'create-class' does not support --dry-run.
|
|
257
|
+
--return-property [RETURN_PROPERTY]
|
|
258
|
+
Return the value of this response property, instead of the entire response object
|
|
259
|
+
```
|
|
260
|
+
|
|
261
|
+
Command `suggest paths` prints ready-to-run `create method` command lines for the alternatives it proposes.
|
|
262
|
+
|
|
263
|
+
Check for similar methods to find the appropriate class and method name for the respective path.
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
## Notable files
|
|
267
|
+
### OpenAPI spec JSON file
|
|
268
|
+
An OpenAPI spec JSON file is usually named like `api.github.com.YYYY-MM-DD.json` or better `api.github.com.YYYY-MM-DD.YYYYMMDDTHHMMSS.json`,
|
|
269
|
+
where:
|
|
270
|
+
- `api.github.com`: the Github API name
|
|
271
|
+
- `YYYY-MM-DD`: the API version
|
|
272
|
+
- `YYYYMMDDTHHMMSS`: the time of retrieval
|
|
273
|
+
|
|
274
|
+
### OpenAPI index JSON file
|
|
275
|
+
An OpenAPI index JSON file is usually named `openapi.index`.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
from scripts import openapifrom scripts.sort_class import sort_class---
|
|
2
|
+
name: Sort methods in PyGithub classes
|
|
3
|
+
description: A Python script to make PyGithub class conform to method and attribute order convention
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Classes implementing GithubObject must have methods and attributes ordered as specified in "Internal Class Order" section in [ARCHITECTURE.md].
|
|
7
|
+
|
|
8
|
+
Python script `scripts/sort_class.py` implements order logic and applies this to given (or all) classes.
|
|
9
|
+
|
|
10
|
+
Run
|
|
11
|
+
```bash
|
|
12
|
+
python scripts/sort_class.py --dry-run openapi.index class1 class2 ...
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
The file `openapi.index` is a file created via `openapi.py` script. This index file first has to be created if it does not exist. See "openapi" skill.
|
|
16
|
+
|
|
17
|
+
Option `--dry-run` makes this a read-only operation: it does not change any files. Always show the changes to the user
|
|
18
|
+
for review and ask to apply the changes. Rerun the command and omit `--dry-run` if user explicitly wishes to apply the changes without further review.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
name: 'MyPy'
|
|
2
|
+
author: 'EnricoMi'
|
|
3
|
+
description: 'A GitHub Action that runs mypy'
|
|
4
|
+
|
|
5
|
+
runs:
|
|
6
|
+
using: 'composite'
|
|
7
|
+
steps:
|
|
8
|
+
- name: Set up Python
|
|
9
|
+
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
|
|
10
|
+
with:
|
|
11
|
+
python-version: "3.x"
|
|
12
|
+
- run: |
|
|
13
|
+
python -m pip install --upgrade pip
|
|
14
|
+
pip install -e .
|
|
15
|
+
pip install -r requirements/types.txt
|
|
16
|
+
shell: bash
|
|
17
|
+
- uses: liskin/gh-problem-matcher-wrap@d31bb388d13cf879e93f878cb2550299f0afb460 # v4.0.0
|
|
18
|
+
with:
|
|
19
|
+
action: add
|
|
20
|
+
linters: mypy
|
|
21
|
+
- run: mypy --show-column-numbers github tests
|
|
22
|
+
shell: bash
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
name: 'Pre-commit'
|
|
2
|
+
author: 'EnricoMi'
|
|
3
|
+
description: 'A GitHub Action that runs pre-commit'
|
|
4
|
+
|
|
5
|
+
runs:
|
|
6
|
+
using: 'composite'
|
|
7
|
+
steps:
|
|
8
|
+
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
|
|
9
|
+
with:
|
|
10
|
+
python-version: "3.13"
|
|
11
|
+
# FIXME: pin pre-commit<4 pending PyCQA/docformatter#287
|
|
12
|
+
- name: install pre-commit
|
|
13
|
+
run: python -m pip install 'pre-commit<4'
|
|
14
|
+
shell: bash
|
|
15
|
+
- name: show environment
|
|
16
|
+
run: python -m pip freeze --local
|
|
17
|
+
shell: bash
|
|
18
|
+
- uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
|
|
19
|
+
with:
|
|
20
|
+
path: ~/.cache/pre-commit
|
|
21
|
+
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
|
|
22
|
+
- name: run pre-commit
|
|
23
|
+
run: pre-commit run --show-diff-on-failure --color=always --all-files
|
|
24
|
+
shell: bash
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
name: 'Sort classes'
|
|
2
|
+
author: 'EnricoMi'
|
|
3
|
+
description: 'A GitHub Action that sorts classes'
|
|
4
|
+
|
|
5
|
+
runs:
|
|
6
|
+
using: 'composite'
|
|
7
|
+
steps:
|
|
8
|
+
- name: Set up Python
|
|
9
|
+
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
|
|
10
|
+
with:
|
|
11
|
+
python-version: "3.12"
|
|
12
|
+
- name: Set up dependencies
|
|
13
|
+
run: |
|
|
14
|
+
pip install -r requirements/scripts.txt
|
|
15
|
+
shell: bash
|
|
16
|
+
- name: Sort classes
|
|
17
|
+
shell: bash
|
|
18
|
+
run: |
|
|
19
|
+
# Sort classes
|
|
20
|
+
set -euo pipefail
|
|
21
|
+
|
|
22
|
+
echo "::group::Sort classes"
|
|
23
|
+
python scripts/openapi.py index github openapi.index
|
|
24
|
+
python scripts/sort_class.py openapi.index $(jq -r ".indices.class_to_descendants.GithubObject | @tsv" < openapi.index)
|
|
25
|
+
echo "::endgroup::"
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
name: Build package
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_call:
|
|
5
|
+
inputs:
|
|
6
|
+
artifact-name:
|
|
7
|
+
description: "Name of an artifact"
|
|
8
|
+
type: "string"
|
|
9
|
+
required: false
|
|
10
|
+
default: "package"
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
build-pkg:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
17
|
+
- name: Set up Python
|
|
18
|
+
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
|
|
19
|
+
with:
|
|
20
|
+
python-version: '3.x'
|
|
21
|
+
|
|
22
|
+
- name: Install dependencies
|
|
23
|
+
run: pip install -U build twine
|
|
24
|
+
- name: Build 📦 package
|
|
25
|
+
run: python -m build
|
|
26
|
+
- name: Check 📦 package
|
|
27
|
+
run: twine check dist/*
|
|
28
|
+
|
|
29
|
+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
30
|
+
with:
|
|
31
|
+
name: ${{ inputs.artifact-name }}
|
|
32
|
+
path: dist
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
name: Auto Fix
|
|
2
|
+
on:
|
|
3
|
+
workflow_dispatch:
|
|
4
|
+
permissions: {}
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
sort:
|
|
8
|
+
name: "sort classes"
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
permissions:
|
|
11
|
+
contents: write
|
|
12
|
+
steps:
|
|
13
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
14
|
+
- uses: ./.github/actions/sort-classes
|
|
15
|
+
continue-on-error: true
|
|
16
|
+
- name: Commit and push changes
|
|
17
|
+
run: |
|
|
18
|
+
# Commit and push changes
|
|
19
|
+
git config --local user.name "${{ github.actor }}"
|
|
20
|
+
git config --local user.email "github-action-${{ github.actor }}@users.noreply.github.com"
|
|
21
|
+
git commit -a -m "Sorting classes" || true
|
|
22
|
+
git fetch origin $GITHUB_REF_NAME
|
|
23
|
+
git rebase origin/$GITHUB_REF_NAME
|
|
24
|
+
git push origin HEAD:$GITHUB_REF_NAME
|
|
25
|
+
|
|
26
|
+
mypy:
|
|
27
|
+
runs-on: ubuntu-latest
|
|
28
|
+
permissions:
|
|
29
|
+
contents: write
|
|
30
|
+
steps:
|
|
31
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
32
|
+
- uses: ./.github/actions/mypy
|
|
33
|
+
continue-on-error: true
|
|
34
|
+
- name: Commit and push changes
|
|
35
|
+
run: |
|
|
36
|
+
# Commit and push changes
|
|
37
|
+
git config --local user.name "${{ github.actor }}"
|
|
38
|
+
git config --local user.email "github-action-${{ github.actor }}@users.noreply.github.com"
|
|
39
|
+
git commit -a -m "Fixing MyPy" || true
|
|
40
|
+
git fetch origin $GITHUB_REF_NAME
|
|
41
|
+
git rebase origin/$GITHUB_REF_NAME
|
|
42
|
+
git push origin HEAD:$GITHUB_REF_NAME
|
|
43
|
+
|
|
44
|
+
pre-commit-fix:
|
|
45
|
+
runs-on: ubuntu-latest
|
|
46
|
+
permissions:
|
|
47
|
+
contents: write
|
|
48
|
+
steps:
|
|
49
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
50
|
+
- uses: ./.github/actions/pre-commit
|
|
51
|
+
continue-on-error: true
|
|
52
|
+
- name: Commit and push changes
|
|
53
|
+
run: |
|
|
54
|
+
# Commit and push changes
|
|
55
|
+
git config --local user.name "${{ github.actor }}"
|
|
56
|
+
git config --local user.email "github-action-${{ github.actor }}@users.noreply.github.com"
|
|
57
|
+
git commit -a -m "Fixing pre-compile" || true
|
|
58
|
+
git fetch origin $GITHUB_REF_NAME
|
|
59
|
+
git rebase origin/$GITHUB_REF_NAME
|
|
60
|
+
git push origin HEAD:$GITHUB_REF_NAME
|