git-batch 4.0.2__tar.gz → 4.0.4__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,8 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: git-batch
3
- Version: 4.0.2
3
+ Version: 4.0.4
4
4
  Summary: Clone single branch from all repositories listed in a file.
5
- Home-page: https://github.com/thegeeklab/git-batch/
6
5
  License: MIT
7
6
  Keywords: git,batch,automation
8
7
  Author: Robert Kaussow
@@ -23,10 +22,11 @@ Classifier: Programming Language :: Python :: 3.12
23
22
  Classifier: Programming Language :: Python :: 3.13
24
23
  Classifier: Topic :: Software Development
25
24
  Classifier: Topic :: Utilities
26
- Requires-Dist: GitPython (==3.1.43)
25
+ Requires-Dist: GitPython (==3.1.44)
27
26
  Requires-Dist: colorama (==0.4.6)
28
- Requires-Dist: python-json-logger (==3.2.1)
27
+ Requires-Dist: python-json-logger (==3.3.0)
29
28
  Project-URL: Documentation, https://github.com/thegeeklab/git-batch/
29
+ Project-URL: Homepage, https://github.com/thegeeklab/git-batch/
30
30
  Project-URL: Repository, https://github.com/thegeeklab/git-batch/
31
31
  Description-Content-Type: text/markdown
32
32
 
@@ -1,3 +1,3 @@
1
1
  """Default package."""
2
2
 
3
- __version__ = "4.0.2"
3
+ __version__ = "4.0.4"
@@ -24,23 +24,23 @@ include = ["LICENSE"]
24
24
  keywords = ["git", "batch", "automation"]
25
25
  license = "MIT"
26
26
  name = "git-batch"
27
- packages = [{ include = "gitbatch" }]
27
+ packages = [{ include = "gitbatch", format = ["sdist", "wheel"] }]
28
28
  readme = "README.md"
29
29
  repository = "https://github.com/thegeeklab/git-batch/"
30
- version = "4.0.2"
30
+ version = "4.0.4"
31
31
 
32
32
  [tool.poetry.dependencies]
33
- GitPython = "3.1.43"
33
+ GitPython = "3.1.44"
34
34
  colorama = "0.4.6"
35
35
  python = "^3.10.0"
36
- python-json-logger = "3.2.1"
36
+ python-json-logger = "3.3.0"
37
37
 
38
38
  [tool.poetry.scripts]
39
39
  git-batch = "gitbatch.cli:main"
40
40
 
41
41
  [tool.poetry.group.dev.dependencies]
42
- ruff = "0.8.3"
43
- pytest = "8.3.4"
42
+ ruff = "0.11.2"
43
+ pytest = "8.3.5"
44
44
  pytest-mock = "3.14.0"
45
45
  pytest-cov = "6.0.0"
46
46
  toml = "0.10.2"
@@ -125,6 +125,9 @@ select = [
125
125
  "RUF",
126
126
  ]
127
127
 
128
+ [tool.ruff.lint.flake8-builtins]
129
+ builtins-allowed-modules = ["logging", "copy"]
130
+
128
131
  [tool.ruff.format]
129
132
  quote-style = "double"
130
133
  indent-style = "space"
File without changes
File without changes
File without changes
File without changes