git2py 0.0.6__tar.gz → 0.0.7__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.
@@ -8,9 +8,23 @@
8
8
  # a release-sensitive repo, change `@master` to a wads tag (e.g. `@v0.1.81`).
9
9
  # CI failure does not block a published release — it blocks the publish
10
10
  # step itself — so floating master is generally safe.
11
+ #
12
+ # Permissions: GitHub validates that the caller grants AT LEAST the
13
+ # permissions any job in the called workflow requests — at workflow-parse
14
+ # time, not at run-time, even if the job would be skipped via `if:`.
15
+ # The reusable workflow needs:
16
+ # contents: write for the publish job's version-bump push-back
17
+ # pages: write for the github-pages publish (if enabled)
18
+ # id-token: write for the github-pages OIDC handshake (if enabled)
19
+ # Granting these in the stub keeps it working on any caller, including
20
+ # personal-account repos where id-token is not write-by-default.
11
21
  name: Continuous Integration
12
22
  on: [push, pull_request]
13
23
  jobs:
14
24
  ci:
15
25
  uses: i2mint/wads/.github/workflows/uv-ci.yml@master
26
+ permissions:
27
+ contents: write
28
+ pages: write
29
+ id-token: write
16
30
  secrets: inherit
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: git2py
3
- Version: 0.0.6
3
+ Version: 0.0.7
4
4
  Summary: Mapping git operation to a dict-like Data Object Layer
5
5
  Project-URL: Homepage, https://github.com/i2mint/git2py
6
6
  License: Apache-2.0
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
6
6
 
7
7
  [project]
8
8
  name = "git2py"
9
- version = "0.0.6"
9
+ version = "0.0.7"
10
10
  description = "Mapping git operation to a dict-like Data Object Layer"
11
11
  readme = "README.md"
12
12
  requires-python = ">=3.10"
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
File without changes
File without changes