patch-package-py 0.1.4__tar.gz → 0.1.5__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: patch-package-py
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: patch 3rd party Python packages
5
5
  Project-URL: Homepage, https://github.com/nomyfan/patch-package-py
6
6
  Project-URL: Repository, https://github.com/nomyfan/patch-package-py
@@ -154,6 +154,13 @@ def prepare_patch_workspace(
154
154
  stderr=subprocess.DEVNULL,
155
155
  stdout=subprocess.DEVNULL,
156
156
  )
157
+ subprocess.check_call(
158
+ ["git", "config", "user.name", "patch-package-py"], cwd=git_path
159
+ )
160
+ subprocess.check_call(
161
+ ["git", "config", "user.email", "noreply@patch-package-py.local"],
162
+ cwd=git_path,
163
+ )
157
164
  subprocess.check_call(
158
165
  ["git", "add", "."],
159
166
  cwd=git_path,
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "patch-package-py"
3
- version = "0.1.4"
3
+ version = "0.1.5"
4
4
  description = "patch 3rd party Python packages"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.9"