ci-devkit 0.1.2__tar.gz → 0.1.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.
Files changed (25) hide show
  1. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/.github/workflows/ci.yml +1 -1
  2. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/.github/workflows/release.yml +1 -1
  3. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/PKG-INFO +1 -1
  4. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/pyproject.toml +1 -1
  5. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/ruff.base.toml +6 -0
  6. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/src/ci_devkit/cache.py +1 -1
  7. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/src/ci_devkit/git_tags.py +1 -1
  8. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/src/ci_devkit/setup.py +1 -1
  9. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/src/ci_devkit/setup_oras.py +1 -1
  10. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/.gitattributes +0 -0
  11. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/.gitignore +0 -0
  12. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/.python-version +0 -0
  13. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/AGENTS.md +0 -0
  14. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/CLAUDE.md +0 -0
  15. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/LICENSE +0 -0
  16. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/NOTICE +0 -0
  17. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/README.md +0 -0
  18. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/publish-config.json +0 -0
  19. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/ruff.toml +0 -0
  20. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/src/ci_devkit/__init__.py +0 -0
  21. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/src/ci_devkit/ci_step.py +0 -0
  22. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/src/ci_devkit/py.typed +0 -0
  23. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/src/ci_devkit/third-party/README.md +0 -0
  24. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/src/ci_devkit/third-party/dotnet-install.sh +0 -0
  25. {ci_devkit-0.1.2 → ci_devkit-0.1.3}/uv.lock +0 -0
@@ -30,4 +30,4 @@ jobs:
30
30
  run: uv run basedpyright
31
31
 
32
32
  - name: Ruff config drift
33
- run: uvx --from python-devkit==0.1.2 sync-ruff --check
33
+ run: uvx --from python-devkit==0.1.3 sync-ruff --check
@@ -22,4 +22,4 @@ jobs:
22
22
  - uses: astral-sh/setup-uv@v7
23
23
 
24
24
  - name: Publish
25
- run: uvx --from release-devkit==0.1.1 publish-packages --config publish-config.json
25
+ run: uvx --from release-devkit==0.1.1 --with bashrun==0.1.0 publish-packages --config publish-config.json
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: ci-devkit
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: CI runner floor: Actions step wrapper, runner and toolchain provisioning, git-tag helpers, and the OCI artifact cache
5
5
  License-File: LICENSE
6
6
  License-File: NOTICE
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ci-devkit"
3
- version = "0.1.2"
3
+ version = "0.1.3"
4
4
  description = "CI runner floor: Actions step wrapper, runner and toolchain provisioning, git-tag helpers, and the OCI artifact cache"
5
5
  requires-python = ">=3.13"
6
6
  dependencies = [
@@ -194,5 +194,11 @@ ignore = [
194
194
  # that pytest consumes implicitly; pytest-style test classes need no self use
195
195
  "**/tests/**" = ["S101", "ARG001", "ARG002", "PLR6301"]
196
196
 
197
+ [lint.ruff]
198
+ # RUF067 in strict mode: __init__.py files must be empty — no re-exports, no
199
+ # side effects. Consumers import submodule paths (from pkg.mod import thing);
200
+ # the package layout is the public surface.
201
+ strictly-empty-init-modules = true
202
+
197
203
  [lint.flake8-builtins]
198
204
  ignorelist = ["id", "map"]
@@ -7,7 +7,7 @@ import tempfile
7
7
  from pathlib import Path
8
8
  from subprocess import CalledProcessError
9
9
 
10
- from bashrun import bash, bash_check, bash_pipe
10
+ from bashrun.bash import bash, bash_check, bash_pipe
11
11
 
12
12
 
13
13
  def _posix(path: Path) -> str:
@@ -2,7 +2,7 @@ from __future__ import annotations
2
2
 
3
3
  from pathlib import Path
4
4
 
5
- from bashrun import bash, bash_check, bash_output
5
+ from bashrun.bash import bash, bash_check, bash_output
6
6
 
7
7
 
8
8
  def list_tag_versions(prefix: str) -> list[str]:
@@ -7,7 +7,7 @@ import shlex
7
7
  import shutil
8
8
  from pathlib import Path
9
9
 
10
- from bashrun import bash, bash_no_raise, bash_output
10
+ from bashrun.bash import bash, bash_no_raise, bash_output
11
11
  from pydantic import Field
12
12
  from pydantic_settings import BaseSettings
13
13
 
@@ -6,7 +6,7 @@ import shlex
6
6
  import shutil
7
7
  from pathlib import Path
8
8
 
9
- from bashrun import bash
9
+ from bashrun.bash import bash
10
10
  from pydantic_settings import BaseSettings
11
11
 
12
12
 
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
File without changes
File without changes