crackerjack 0.1.14__tar.gz → 0.2.1__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.
Potentially problematic release.
This version of crackerjack might be problematic. Click here for more details.
- {crackerjack-0.1.14 → crackerjack-0.2.1}/PKG-INFO +1 -1
- {crackerjack-0.1.14 → crackerjack-0.2.1}/crackerjack/.gitignore +0 -1
- {crackerjack-0.1.14 → crackerjack-0.2.1}/crackerjack/crackerjack.py +2 -5
- {crackerjack-0.1.14 → crackerjack-0.2.1}/crackerjack/pyproject.toml +1 -1
- {crackerjack-0.1.14 → crackerjack-0.2.1}/pyproject.toml +1 -1
- crackerjack-0.1.14/crackerjack/.pypirc +0 -3
- {crackerjack-0.1.14 → crackerjack-0.2.1}/LICENSE +0 -0
- {crackerjack-0.1.14 → crackerjack-0.2.1}/README.md +0 -0
- {crackerjack-0.1.14 → crackerjack-0.2.1}/crackerjack/.crackerjack-config.yaml +0 -0
- {crackerjack-0.1.14 → crackerjack-0.2.1}/crackerjack/.libcst.codemod.yaml +0 -0
- {crackerjack-0.1.14 → crackerjack-0.2.1}/crackerjack/.pre-commit-config.yaml +0 -0
- {crackerjack-0.1.14 → crackerjack-0.2.1}/crackerjack/.ruff_cache/.gitignore +0 -0
- {crackerjack-0.1.14 → crackerjack-0.2.1}/crackerjack/.ruff_cache/CACHEDIR.TAG +0 -0
- {crackerjack-0.1.14 → crackerjack-0.2.1}/crackerjack/__init__.py +0 -0
- {crackerjack-0.1.14 → crackerjack-0.2.1}/crackerjack/__main__.py +0 -0
|
@@ -51,9 +51,9 @@ class Crakerjack(BaseModel):
|
|
|
51
51
|
pkg_toml_config = await self.get_toml_config(self.pkg_toml_path)
|
|
52
52
|
if self.poetry_pip_env:
|
|
53
53
|
del pkg_toml_config.tool.poetry
|
|
54
|
-
|
|
54
|
+
pkg_deps = pkg_toml_config.tool["pdm"]["dev-dependencies"]
|
|
55
55
|
pkg_toml_config.tool = our_toml_config.tool
|
|
56
|
-
pkg_toml_config.tool
|
|
56
|
+
pkg_toml_config.tool["pdm"]["dev-dependencies"] = pkg_deps
|
|
57
57
|
if self.pkg_path.stem == "crackerjack":
|
|
58
58
|
await dump.toml(pkg_toml_config.dict(), self.our_toml_path)
|
|
59
59
|
else:
|
|
@@ -76,13 +76,10 @@ class Crakerjack(BaseModel):
|
|
|
76
76
|
".pre-commit-config.yaml",
|
|
77
77
|
".libcst.codemod.yaml",
|
|
78
78
|
".crackerjack-config.yaml",
|
|
79
|
-
".pypirc",
|
|
80
79
|
):
|
|
81
80
|
config_path = self.our_path.parent / config
|
|
82
81
|
pkg_config_path = self.pkg_path / config
|
|
83
82
|
await pkg_config_path.touch(exist_ok=True)
|
|
84
|
-
if config_path.name != ".pypirc":
|
|
85
|
-
run(["git", "add", str(pkg_config_path)])
|
|
86
83
|
if self.pkg_path.stem == "crackerjack":
|
|
87
84
|
await config_path.write_text(await pkg_config_path.read_text())
|
|
88
85
|
# if poetry_pip_env:
|
|
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
|