git-batch 3.0.4__tar.gz → 4.0.3__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.
- {git_batch-3.0.4 → git_batch-4.0.3}/PKG-INFO +7 -8
- {git_batch-3.0.4 → git_batch-4.0.3}/gitbatch/__init__.py +1 -1
- {git_batch-3.0.4 → git_batch-4.0.3}/gitbatch/utils/copy.py +1 -1
- {git_batch-3.0.4 → git_batch-4.0.3}/pyproject.toml +13 -11
- {git_batch-3.0.4 → git_batch-4.0.3}/LICENSE +0 -0
- {git_batch-3.0.4 → git_batch-4.0.3}/README.md +0 -0
- {git_batch-3.0.4 → git_batch-4.0.3}/gitbatch/cli.py +0 -0
- {git_batch-3.0.4 → git_batch-4.0.3}/gitbatch/logging.py +0 -0
- {git_batch-3.0.4 → git_batch-4.0.3}/gitbatch/utils/__init__.py +0 -0
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: git-batch
|
|
3
|
-
Version:
|
|
3
|
+
Version: 4.0.3
|
|
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
|
|
9
8
|
Author-email: mail@thegeeklab.de
|
|
10
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.10.0,<4.0.0
|
|
11
10
|
Classifier: Development Status :: 5 - Production/Stable
|
|
12
11
|
Classifier: Environment :: Console
|
|
13
12
|
Classifier: Intended Audience :: Developers
|
|
@@ -17,17 +16,17 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
17
16
|
Classifier: Natural Language :: English
|
|
18
17
|
Classifier: Operating System :: POSIX
|
|
19
18
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
22
19
|
Classifier: Programming Language :: Python :: 3.10
|
|
23
20
|
Classifier: Programming Language :: Python :: 3.11
|
|
24
21
|
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
25
23
|
Classifier: Topic :: Software Development
|
|
26
24
|
Classifier: Topic :: Utilities
|
|
27
|
-
Requires-Dist: GitPython (==3.1.
|
|
25
|
+
Requires-Dist: GitPython (==3.1.44)
|
|
28
26
|
Requires-Dist: colorama (==0.4.6)
|
|
29
|
-
Requires-Dist: python-json-logger (==2.
|
|
27
|
+
Requires-Dist: python-json-logger (==3.2.1)
|
|
30
28
|
Project-URL: Documentation, https://github.com/thegeeklab/git-batch/
|
|
29
|
+
Project-URL: Homepage, https://github.com/thegeeklab/git-batch/
|
|
31
30
|
Project-URL: Repository, https://github.com/thegeeklab/git-batch/
|
|
32
31
|
Description-Content-Type: text/markdown
|
|
33
32
|
|
|
@@ -121,7 +121,7 @@ def simplecopytree(
|
|
|
121
121
|
|
|
122
122
|
|
|
123
123
|
def simplecopystat(src, dst, *, follow_symlinks=True):
|
|
124
|
-
def _nop(*args, ns=None, follow_symlinks=None):
|
|
124
|
+
def _nop(*args, ns=None, follow_symlinks=None):
|
|
125
125
|
pass
|
|
126
126
|
|
|
127
127
|
# follow symlinks (aka don't not follow symlinks)
|
|
@@ -10,11 +10,10 @@ classifiers = [
|
|
|
10
10
|
"Natural Language :: English",
|
|
11
11
|
"Operating System :: POSIX",
|
|
12
12
|
"Programming Language :: Python :: 3",
|
|
13
|
-
"Programming Language :: Python :: 3.8",
|
|
14
|
-
"Programming Language :: Python :: 3.9",
|
|
15
13
|
"Programming Language :: Python :: 3.10",
|
|
16
14
|
"Programming Language :: Python :: 3.11",
|
|
17
15
|
"Programming Language :: Python :: 3.12",
|
|
16
|
+
"Programming Language :: Python :: 3.13",
|
|
18
17
|
"Topic :: Utilities",
|
|
19
18
|
"Topic :: Software Development",
|
|
20
19
|
]
|
|
@@ -25,25 +24,25 @@ include = ["LICENSE"]
|
|
|
25
24
|
keywords = ["git", "batch", "automation"]
|
|
26
25
|
license = "MIT"
|
|
27
26
|
name = "git-batch"
|
|
28
|
-
packages = [{ include = "gitbatch" }]
|
|
27
|
+
packages = [{ include = "gitbatch", format = ["sdist", "wheel"] }]
|
|
29
28
|
readme = "README.md"
|
|
30
29
|
repository = "https://github.com/thegeeklab/git-batch/"
|
|
31
|
-
version = "
|
|
30
|
+
version = "4.0.3"
|
|
32
31
|
|
|
33
32
|
[tool.poetry.dependencies]
|
|
34
|
-
GitPython = "3.1.
|
|
33
|
+
GitPython = "3.1.44"
|
|
35
34
|
colorama = "0.4.6"
|
|
36
|
-
python = "^3.
|
|
37
|
-
python-json-logger = "2.
|
|
35
|
+
python = "^3.10.0"
|
|
36
|
+
python-json-logger = "3.2.1"
|
|
38
37
|
|
|
39
38
|
[tool.poetry.scripts]
|
|
40
39
|
git-batch = "gitbatch.cli:main"
|
|
41
40
|
|
|
42
41
|
[tool.poetry.group.dev.dependencies]
|
|
43
|
-
ruff = "0.
|
|
44
|
-
pytest = "8.
|
|
45
|
-
pytest-mock = "3.
|
|
46
|
-
pytest-cov = "
|
|
42
|
+
ruff = "0.9.1"
|
|
43
|
+
pytest = "8.3.4"
|
|
44
|
+
pytest-mock = "3.14.0"
|
|
45
|
+
pytest-cov = "6.0.0"
|
|
47
46
|
toml = "0.10.2"
|
|
48
47
|
|
|
49
48
|
[tool.poetry-dynamic-versioning]
|
|
@@ -126,6 +125,9 @@ select = [
|
|
|
126
125
|
"RUF",
|
|
127
126
|
]
|
|
128
127
|
|
|
128
|
+
[tool.ruff.lint.flake8-builtins]
|
|
129
|
+
builtins-allowed-modules = ["logging", "copy"]
|
|
130
|
+
|
|
129
131
|
[tool.ruff.format]
|
|
130
132
|
quote-style = "double"
|
|
131
133
|
indent-style = "space"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|