git-batch 3.0.7__tar.gz → 3.0.9__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.7 → git_batch-3.0.9}/PKG-INFO +2 -1
- {git_batch-3.0.7 → git_batch-3.0.9}/gitbatch/__init__.py +1 -1
- {git_batch-3.0.7 → git_batch-3.0.9}/gitbatch/utils/copy.py +1 -1
- {git_batch-3.0.7 → git_batch-3.0.9}/pyproject.toml +3 -3
- {git_batch-3.0.7 → git_batch-3.0.9}/LICENSE +0 -0
- {git_batch-3.0.7 → git_batch-3.0.9}/README.md +0 -0
- {git_batch-3.0.7 → git_batch-3.0.9}/gitbatch/cli.py +0 -0
- {git_batch-3.0.7 → git_batch-3.0.9}/gitbatch/logging.py +0 -0
- {git_batch-3.0.7 → git_batch-3.0.9}/gitbatch/utils/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: git-batch
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.9
|
|
4
4
|
Summary: Clone single branch from all repositories listed in a file.
|
|
5
5
|
Home-page: https://github.com/thegeeklab/git-batch/
|
|
6
6
|
License: MIT
|
|
@@ -22,6 +22,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.10
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.11
|
|
24
24
|
Classifier: Programming Language :: Python :: 3.12
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
25
26
|
Classifier: Topic :: Software Development
|
|
26
27
|
Classifier: Topic :: Utilities
|
|
27
28
|
Requires-Dist: GitPython (==3.1.43)
|
|
@@ -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)
|
|
@@ -28,7 +28,7 @@ name = "git-batch"
|
|
|
28
28
|
packages = [{ include = "gitbatch" }]
|
|
29
29
|
readme = "README.md"
|
|
30
30
|
repository = "https://github.com/thegeeklab/git-batch/"
|
|
31
|
-
version = "3.0.
|
|
31
|
+
version = "3.0.9"
|
|
32
32
|
|
|
33
33
|
[tool.poetry.dependencies]
|
|
34
34
|
GitPython = "3.1.43"
|
|
@@ -40,8 +40,8 @@ python-json-logger = "2.0.7"
|
|
|
40
40
|
git-batch = "gitbatch.cli:main"
|
|
41
41
|
|
|
42
42
|
[tool.poetry.group.dev.dependencies]
|
|
43
|
-
ruff = "0.
|
|
44
|
-
pytest = "8.
|
|
43
|
+
ruff = "0.7.2"
|
|
44
|
+
pytest = "8.3.3"
|
|
45
45
|
pytest-mock = "3.14.0"
|
|
46
46
|
pytest-cov = "5.0.0"
|
|
47
47
|
toml = "0.10.2"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|