github-rest-api 0.34.0__tar.gz → 0.34.1__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.
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/PKG-INFO +1 -1
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/github_rest_api/github.py +3 -3
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/pyproject.toml +1 -1
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/uv.lock +1 -1
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/.gemini/system.md +0 -0
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/.github/workflows/create_pr_dev_to_main.yml +0 -0
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/.github/workflows/create_pr_to_dev.yml +0 -0
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/.github/workflows/lint.yml +0 -0
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/.github/workflows/release.yml +0 -0
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/.gitignore +0 -0
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/.gitpod.yml +0 -0
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/GEMINI.md +0 -0
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/README.md +0 -0
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/github_rest_api/__init__.py +0 -0
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/github_rest_api/actions/__init__.py +0 -0
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/github_rest_api/actions/cargo/__init__.py +0 -0
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/github_rest_api/actions/cargo/benchmark.py +0 -0
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/github_rest_api/actions/cargo/profiling.py +0 -0
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/github_rest_api/actions/cargo/utils.py +0 -0
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/github_rest_api/actions/utils.py +0 -0
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/github_rest_api/utils.py +0 -0
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/tests/__init__.py +0 -0
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/tests/test_github.py +0 -0
- {github_rest_api-0.34.0 → github_rest_api-0.34.1}/tests/test_utils.py +0 -0
|
@@ -265,7 +265,7 @@ class Repository(GitHub):
|
|
|
265
265
|
"""Delete this repository from GitHub."""
|
|
266
266
|
return self._delete(url=self._url_repo)
|
|
267
267
|
|
|
268
|
-
def delete_ref(self, ref: str) ->
|
|
268
|
+
def delete_ref(self, ref: str) -> requests.Response:
|
|
269
269
|
"""Delete a reference from this repository.
|
|
270
270
|
:param ref: The reference to delete from this repository.
|
|
271
271
|
"""
|
|
@@ -273,9 +273,9 @@ class Repository(GitHub):
|
|
|
273
273
|
raise ValueError("A string value is required for `ref`.")
|
|
274
274
|
return self._delete(
|
|
275
275
|
url=f"{self._url_refs}/{ref}",
|
|
276
|
-
)
|
|
276
|
+
)
|
|
277
277
|
|
|
278
|
-
def delete_branch(self, branch: str) ->
|
|
278
|
+
def delete_branch(self, branch: str) -> requests.Response:
|
|
279
279
|
"""Delete a branch from this repository.
|
|
280
280
|
:param branch: The branch to delete from this repository.
|
|
281
281
|
"""
|
|
File without changes
|
{github_rest_api-0.34.0 → github_rest_api-0.34.1}/.github/workflows/create_pr_dev_to_main.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{github_rest_api-0.34.0 → github_rest_api-0.34.1}/github_rest_api/actions/cargo/benchmark.py
RENAMED
|
File without changes
|
{github_rest_api-0.34.0 → github_rest_api-0.34.1}/github_rest_api/actions/cargo/profiling.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|